Searched refs:EPS_SVR (Results 1 – 2 of 2) sorted by relevance
446 get_row_func = params->svm_type == CvSVM::EPS_SVR || in create()1236 svm_type != ONE_CLASS && svm_type != EPS_SVR && in set_params()1245 if( svm_type == C_SVC || svm_type == EPS_SVR ) in set_params()1250 if( svm_type != EPS_SVR ) in set_params()1303 … svm_type == EPS_SVR ? solver->solve_eps_svr( sample_count, var_count, samples, (float*)_responses, in train1()1329 if( svm_type == ONE_CLASS || svm_type == EPS_SVR || svm_type == NU_SVR ) in do_train()1691 if( svm_type == CvSVM::C_SVC || svm_type == CvSVM::EPS_SVR ) in train_auto()1693 if( svm_type != CvSVM::EPS_SVR ) in train_auto()1728 const bool is_regression = (svm_type == EPS_SVR) || (svm_type == NU_SVR); in train_auto()1911 if( params.svm_type == EPS_SVR || in predict()[all …]
486 enum { C_SVC=100, NU_SVC=101, ONE_CLASS=102, EPS_SVR=103, NU_SVR=104 }; enumerator