forked from bwaldvogel/liblinear-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolverType.java
More file actions
58 lines (49 loc) · 1008 Bytes
/
Copy pathSolverType.java
File metadata and controls
58 lines (49 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package liblinear;
public enum SolverType {
/**
* L2-regularized logistic regression (primal)
*
* (fka L2_LR)
*/
L2R_LR,
/**
* L2-regularized L2-loss support vector classification (dual)
*
* (fka L2LOSS_SVM_DUAL)
*/
L2R_L2LOSS_SVC_DUAL,
/**
* L2-regularized L2-loss support vector classification (primal)
*
* (fka L2LOSS_SVM)
*/
L2R_L2LOSS_SVC,
/**
* L2-regularized L1-loss support vector classification (dual)
*
* (fka L1LOSS_SVM_DUAL)
*/
L2R_L1LOSS_SVC_DUAL,
/**
* multi-class support vector classification by Crammer and Singer
*/
MCSVM_CS,
/**
* L1-regularized L2-loss support vector classification
*
* @since 1.5
*/
L1R_L2LOSS_SVC,
/**
* L1-regularized logistic regression
*
* @since 1.5
*/
L1R_LR,
/**
* L2-regularized logistic regression (dual)
*
* @since 1.7
*/
L2R_LR_DUAL;
}