View Javadoc

1   package liblinear;
2   
3   public enum SolverType {
4   
5       /**
6        * L2-regularized logistic regression
7        *
8        * (fka L2_LR)
9        */
10      L2R_LR,
11  
12      /**
13       * L2-regularized L2-loss support vector classification (dual)
14       *
15       * (fka L2LOSS_SVM_DUAL)
16       */
17      L2R_L2LOSS_SVC_DUAL,
18  
19      /**
20       * L2-regularized L2-loss support vector classification (primal)
21       *
22       * (fka L2LOSS_SVM)
23       */
24      L2R_L2LOSS_SVC,
25  
26      /**
27       * L2-regularized L1-loss support vector classification (dual)
28       *
29       * (fka L1LOSS_SVM_DUAL)
30       */
31      L2R_L1LOSS_SVC_DUAL,
32  
33      /**
34       * multi-class support vector classification by Crammer and Singer
35       */
36      MCSVM_CS,
37  
38      /**
39       * L1-regularized L2-loss support vector classification
40       *
41       * @since 1.5
42       */
43      L1R_L2LOSS_SVC,
44  
45      /**
46       * L1-regularized logistic regression
47       *
48       * @since 1.5
49       */
50      L1R_LR;
51  }