Skip to content

Commit 00ac46d

Browse files
committed
Updated configs.
1 parent e617791 commit 00ac46d

File tree

2 files changed

+43
-8
lines changed

2 files changed

+43
-8
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"INCLUDE": ["../../common/sklearn.json", "../large_scale/large_scale.json"],
3+
"PARAMETERS_SETS": {
4+
"spmd kmeans parameters": {
5+
"algorithm": {
6+
"estimator": "KMeans",
7+
"estimator_params": {
8+
"algorithm": "lloyd",
9+
"max_iter": 20,
10+
"n_clusters": 10,
11+
"random_state": 42
12+
},
13+
"estimator_methods": { "training": "fit", "inference": "" },
14+
"sklearnex_context": { "use_raw_input": true }
15+
}
16+
},
17+
"synthetic data": {
18+
"data": [
19+
{ "source": "make_blobs", "generation_kwargs": { "n_samples": 2000000, "n_features": 100, "centers": 2000, "cluster_std": 3, "center_box": 100.0}}
20+
]
21+
}
22+
},
23+
"TEMPLATES": {
24+
"kmeans": {
25+
"SETS": [
26+
"synthetic data",
27+
"sklearnex spmd implementation",
28+
"large scale 2k parameters sample shift",
29+
"spmd kmeans parameters"
30+
]
31+
}
32+
}
33+
}
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
{
2-
"INCLUDE": ["../../common/sklearn.json", "large_scale.json"],
2+
"INCLUDE": ["../../common/sklearn.json", "../large_scale/large_scale.json"],
33
"PARAMETERS_SETS": {
44
"spmd kmeans parameters": {
55
"algorithm": {
66
"estimator": "KMeans",
77
"estimator_params": {
8-
"algorithm": "lloyd"
8+
"algorithm": "lloyd",
9+
"max_iter": 20,
10+
"n_clusters": 100
911
},
10-
"estimator_methods": { "training": "fit", "inference": "predict" }
12+
"estimator_methods": { "training": "fit", "inference": "predict" },
13+
"sklearnex_context": { "use_raw_input": true }
1114
}
12-
},
13-
"synthetic data": {
15+
},
16+
"synthetic data": {
1417
"data": [
15-
{ "source": "make_blobs", "generation_kwargs": { "n_samples": 5000000, "n_features": 10, "centers": 10 }, "algorithm": { "n_clusters": 10, "max_iter": 10 } },
16-
{ "source": "make_blobs", "generation_kwargs": { "n_samples": 30000, "n_features": 1000, "centers": 10 }, "algorithm": { "n_clusters": 10, "max_iter": 10 } },
17-
{ "source": "make_blobs", "generation_kwargs": { "n_samples": 1000000, "n_features": 100, "centers": 100 }, "algorithm": { "n_clusters": 100, "max_iter": 100 } }
18+
{ "source": "make_blobs", "generation_kwargs": { "n_samples": 25000000, "n_features": 100, "centers": 100 }}
1819
]
1920
}
2021
},
@@ -29,3 +30,4 @@
2930
}
3031
}
3132
}
33+

0 commit comments

Comments
 (0)