Searched defs:is_regression (Results 1 - 2 of 2) sorted by relevance

/external/opencv/ml/src/
H A Dmlknearest.cpp88 bool CvKNearest::is_regression() const { return regression; } function in class:CvKNearest
H A Dmlsvm.cpp1728 const bool is_regression = (svm_type == EPS_SVR) || (svm_type == NU_SVR); local
1749 if( is_regression )
1816 error += is_regression ? powf( resp - *(float*)true_resp, 2 )
2473 int is_regression;
2616 is_regression = cv_params->is_regression;
2617 best_rate = is_regression ? FLT_MAX : 0;
2651 well = rate > best_rate && !is_regression || rate < best_rate && is_regression;

Completed in 116 milliseconds