Skip to content

Commit b5ad233

Browse files
committed
Reduce config
1 parent b82d772 commit b5ad233

File tree

1 file changed

+9
-31
lines changed

1 file changed

+9
-31
lines changed

configs/incremental.json

Lines changed: 9 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"PARAMETERS_SETS": {
33
"common": {"bench": {"n_runs": 10, "time_limit": 60}},
4-
"covariance data": {
4+
"unlabeled dataset": {
55
"data": [
66
{
77
"source": "make_blobs",
@@ -14,18 +14,7 @@
1414
}
1515
]
1616
},
17-
"basic_statistics data": {
18-
"data": {
19-
"source": "make_blobs",
20-
"generation_kwargs": {
21-
"centers": 1,
22-
"n_samples": 10000,
23-
"n_features": [16, 64]
24-
},
25-
"split_kwargs": {"ignore": true}
26-
}
27-
},
28-
"linear_regression data": {
17+
"labeled dataset": {
2918
"data": {
3019
"source": "make_regression",
3120
"split_kwargs": {"train_size": 0.2, "test_size": 0.8},
@@ -37,22 +26,11 @@
3726
}
3827
}
3928
},
40-
"pca data": {
41-
"data": {
42-
"source": "make_blobs",
43-
"generation_kwargs": {
44-
"centers": 1,
45-
"n_samples": 1000,
46-
"n_features": [16, 64]
47-
},
48-
"split_kwargs": {"ignore": true}
49-
}
50-
},
5129
"covariance": {
5230
"algorithm": [
5331
{
5432
"estimator": "IncrementalEmpiricalCovariance",
55-
"library": "sklearnex.covariance",
33+
"library": "sklearnex",
5634
"estimator_methods": {"training": "partial_fit"},
5735
"num_batches": {"training": 2}
5836
}
@@ -62,7 +40,7 @@
6240
"algorithm": [
6341
{
6442
"estimator": "IncrementalBasicStatistics",
65-
"library": "sklearnex.basic_statistics",
43+
"library": "sklearnex",
6644
"num_batches": {"training": 2}
6745
}
6846
]
@@ -71,7 +49,7 @@
7149
"algorithm": [
7250
{
7351
"estimator": "IncrementalLinearRegression",
74-
"library": "sklearnex.linear_model",
52+
"library": "sklearnex",
7553
"num_batches": {"training": 2}
7654
}
7755
]
@@ -80,17 +58,17 @@
8058
"algorithm": [
8159
{
8260
"estimator": "IncrementalPCA",
83-
"library": "sklearnex.preview.decomposition",
61+
"library": "sklearnex.preview",
8462
"num_batches": {"training": 2}
8563
}
8664
]
8765
}
8866
},
8967
"TEMPLATES": {
90-
"covariance": {"SETS": ["common", "covariance", "covariance data"]},
68+
"covariance": {"SETS": ["common", "covariance", "unlabeled dataset"]},
9169
"linear_regression": {
92-
"SETS": ["common", "linear_regression", "linear_regression data"]
70+
"SETS": ["common", "linear_regression", "labeled dataset"]
9371
},
94-
"pca": {"SETS": ["common", "pca", "pca data"]}
72+
"pca": {"SETS": ["common", "pca", "unlabeled dataset"]}
9573
}
9674
}

0 commit comments

Comments
 (0)