-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
59 lines (59 loc) · 1.45 KB
/
config.json
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
59
{
"algorithms":
{"RandomForestClassifier":
{
"module_name": "dislib.classification",
"class_name": "RandomForestClassifier",
"supervised": "True"
},
"KMeans":
{
"module_name": "dislib.cluster",
"class_name": "KMeans",
"supervised": "False"
}
},
"var_config":
{
"number_of_row_partitions": [1,4,32,64],
"number_of_columns_partitions": [1],
"model_path_name": "stackedCls.pkl",
"training_dataset_path_name": "training_dataset.csv",
"execution_log_path_name": "execution_log.json",
"execution_info_path_name": "execution_info.txt",
"classification_metrics_path_name": "classification_metrics.txt",
"test_failed": -1
},
"exec_config": {
"RandomForestClassifier": [
{
"dataset_path": "datasets/banknote.csv",
"params": {
"random_state": 21
}
},
{
"dataset_path": "datasets/cleveland.csv",
"params": {
"random_state": 18
}
}
],
"KMeans": [
{
"dataset_path": "datasets/diabetes.csv",
"params": {
"random_state": 21,
"n_clusters": 2
}
},
{
"dataset_path": "datasets/titanic.csv",
"params": {
"random_state": 15,
"n_clusters": 2
}
}
]
}
}