#include <svm_parameter.h>

Public Attributes | |
| double | C |
| Penalty term C. More... | |
| double | cache_size |
| int | max_iter |
| int | nochange_steps |
| double | tol |
| Tolerance used to stop fitting. More... | |
| rapids_logger::level_enum | verbosity |
| Print information about training. More... | |
| double | epsilon |
| epsilon parameter for epsilon-SVR More... | |
| SvmType | svmType |
Numerical input parameters for an SVM.
There are several parameters that control how long we train. The training stops if:
| double ML::SVM::SvmParameter::C |
Penalty term C.
| double ML::SVM::SvmParameter::cache_size |
kernel cache size in MiB
| double ML::SVM::SvmParameter::epsilon |
epsilon parameter for epsilon-SVR
| int ML::SVM::SvmParameter::max_iter |
maximum number of outer SMO iterations. Use -1 to let the SMO solver set a default value (100*n_rows).
| int ML::SVM::SvmParameter::nochange_steps |
| SvmType ML::SVM::SvmParameter::svmType |
| double ML::SVM::SvmParameter::tol |
Tolerance used to stop fitting.
| rapids_logger::level_enum ML::SVM::SvmParameter::verbosity |
Print information about training.