|
18 | 18 | }, |
19 | 19 | "configurations": { |
20 | 20 | "SVM": { |
21 | | - "classifier": "sklearn.svm.SVC", |
| 21 | + "classifier": "SVC", |
22 | 22 | "parameters": { |
23 | 23 | "C": [0.001, 0.1, 1, 10, 100], |
24 | 24 | "gamma": [0.1, 1, 10] |
25 | 25 | } |
26 | 26 | }, |
27 | 27 | "SVMOP": { |
28 | | - "classifier": "orca_python.classifiers.OrdinalDecomposition", |
| 28 | + "classifier": "OrdinalDecomposition", |
29 | 29 | "parameters": { |
30 | 30 | "dtype": "ordered_partitions", |
31 | 31 | "decision_method": "frank_hall", |
32 | | - "base_classifier": "sklearn.svm.SVC", |
| 32 | + "base_classifier": "SVC", |
33 | 33 | "parameters": { |
34 | 34 | "C": [0.01, 0.1, 1, 10], |
35 | 35 | "gamma": [0.01, 0.1, 1, 10], |
|
38 | 38 | } |
39 | 39 | }, |
40 | 40 | "LR": { |
41 | | - "classifier": "orca_python.classifiers.OrdinalDecomposition", |
| 41 | + "classifier": "OrdinalDecomposition", |
42 | 42 | "parameters": { |
43 | 43 | "dtype": ["ordered_partitions", "one_vs_next"], |
44 | 44 | "decision_method": "exponential_loss", |
45 | | - "base_classifier": "sklearn.linear_model.LogisticRegression", |
| 45 | + "base_classifier": "LogisticRegression", |
46 | 46 | "parameters": { |
47 | 47 | "solver": ["liblinear"], |
48 | 48 | "C": [0.01, 0.1, 1, 10], |
|
52 | 52 | } |
53 | 53 | }, |
54 | 54 | "REDSVM": { |
55 | | - "classifier": "orca_python.classifiers.REDSVM", |
| 55 | + "classifier": "REDSVM", |
56 | 56 | "parameters": { |
57 | 57 | "kernel": "rbf", |
58 | 58 | "degree": 3, |
59 | 59 | "gamma": 0.1, |
60 | 60 | "coef0": 0, |
61 | 61 | "C": 1, |
62 | 62 | "tol": 0.001, |
63 | | - "shrinking": 1 |
| 63 | + "shrinking": true |
64 | 64 | } |
65 | 65 | }, |
66 | 66 | "SVOREX": { |
67 | | - "classifier": "orca_python.classifiers.SVOREX", |
| 67 | + "classifier": "SVOREX", |
68 | 68 | "parameters": { |
69 | 69 | "kernel": "gaussian", |
70 | 70 | "C": [0.1, 1, 10], |
|
0 commit comments