Click or drag to resize
Accord.NET (logo)

LibSvmSolverType Enumeration

Solver types allowed in LibSVM/Liblinear model files.

Namespace:  Accord.IO
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public enum LibSvmSolverType
Members
  Member nameValueDescription
Unknown-1 Unknown solver type.
L2RegularizedLogisticRegression0 L2-regularized logistic regression in the primal (-s 0, L2R_LR).
L2RegularizedL2LossSvcDual1 L2-regularized L2-loss support vector classification in the dual (-s 1, L2R_L2LOSS_SVC_DUAL, the default).
L2RegularizedL2LossSvc2 L2-regularized L2-loss support vector classification in the primal (-s 2, L2R_L2LOSS_SVC).
L2RegularizedL1LossSvcDual3 L2-regularized L1-loss support vector classification in the dual (-s 3, L2R_L1LOSS_SVC_DUAL).
MulticlassSvmCrammerSinger4 Support vector classification by Crammer and Singer (-s 4, MCSVM_CS).
L1RegularizedL2LossSvc5 L1-regularized L2-loss support vector classification (-s 5, L1R_L2LOSS_SVC).
L1RegularizedLogisticRegression6 L1-regularized logistic regression (-s 6, L1R_LR).
L2RegularizedLogisticRegressionDual7 L2-regularized logistic regression in the dual (-s 7, L2R_LR_DUAL).
L2RegularizedL2LossSvr11 L2-regularized L2-loss support vector regression in the primal (-s 11, L2R_L2LOSS_SVR).
L2RegularizedL2LossSvrDual12 L2-regularized L2-loss support vector regression in the dual (-s 12, L2R_L2LOSS_SVR_DUAL).
L2RegularizedL1LossSvrDual13 L2-regularized L1-loss support vector regression in the dual (-s 13, L2R_L1LOSS_SVR_DUAL).
See Also