-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
45 lines (45 loc) · 755 Bytes
/
config.json
File metadata and controls
45 lines (45 loc) · 755 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
{
"data_source": "pandas",
"optimizer": "tpe",
"plots_path": "results/datavis/kmeans",
"stat_path": "results/stat/kmeans",
"preprocessing": {
"normalizer": {
"methods": {
"x1": "zscore",
"x2": "range",
"x3": "minmax"
},
"columns": [
"x1",
"x2",
"x3"
]
},
"sampler": {
"features": "data.parquet",
"similarity": null
}
},
"features": "data.parquet",
"similarity": null,
"algorithm": "kmeans",
"params": {
"n_clusters": [
3,
5,
7,
10
],
"init": [
"k-means++",
"random"
],
"max_iter": [
100,
200
]
},
"metric": "attribute",
"output_path": "best_kmeans.joblib"
}