-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfigurations.json
More file actions
58 lines (58 loc) · 1.33 KB
/
configurations.json
File metadata and controls
58 lines (58 loc) · 1.33 KB
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
{
"MultinomialNB": {
"population": 46,
"generations": 82,
"crossover": 0.8373,
"factor": 0.3984,
"hyperparameters": [
"alpha",
"fit_prior"
]
},
"DecisionTreeClassifier": {
"population": 32,
"generations": 89,
"crossover": 0.4073,
"factor": 1.1551,
"hyperparameters": [
"criterion",
"splitter",
"max_depth",
"min_samples_leaf",
"min_weight_fraction_leaf",
"max_features",
"random_state",
"max_leaf_nodes",
"min_impurity_decrease"
]
},
"SVC": {
"population": 40,
"generations": 11,
"crossover": 0.1564,
"factor": 1.7257,
"hyperparameters": [
"C",
"kernel",
"degree",
"gamma",
"probability",
"random_state"
]
},
"RandomForestClassifier": {
"population": 20,
"generations": 83,
"crossover": 0.2153,
"factor": 1.0173,
"hyperparameters": [
"n_estimators",
"max_depth",
"min_samples_split",
"min_samples_leaf",
"max_features",
"bootstrap",
"random_state"
]
}
}