-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathkmeans_narrow_weak.json
More file actions
33 lines (33 loc) · 1.04 KB
/
kmeans_narrow_weak.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"INCLUDE": ["../../common/sklearn.json", "../large_scale/large_scale.json"],
"PARAMETERS_SETS": {
"spmd kmeans parameters": {
"algorithm": {
"estimator": "KMeans",
"estimator_params": {
"algorithm": "lloyd",
"max_iter": 20,
"n_clusters": 10,
"random_state": 42
},
"estimator_methods": { "training": "fit", "inference": "" },
"sklearnex_context": { "use_raw_input": true }
}
},
"synthetic data": {
"data": [
{ "source": "make_blobs", "generation_kwargs": { "n_samples": 2000000, "n_features": 100, "centers": 2000, "cluster_std": 3, "center_box": 100.0}}
]
}
},
"TEMPLATES": {
"kmeans": {
"SETS": [
"synthetic data",
"sklearnex spmd implementation",
"large scale 2k parameters sample shift",
"spmd kmeans parameters"
]
}
}
}