-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpca.json
More file actions
41 lines (41 loc) · 1.23 KB
/
pca.json
File metadata and controls
41 lines (41 loc) · 1.23 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
34
35
36
37
38
39
40
41
{
"INCLUDE": ["../common/sklearn.json", "../common/pca.json"],
"PARAMETERS_SETS": {
"high-load pca datasets": [
{
"data": {
"source": "make_blobs",
"generation_kwargs": [
{ "n_samples": 10000000, "n_features": 200, "centers": 2 },
{ "n_samples": 5000000, "n_features": 1000, "centers": 2 },
{ "n_samples": 1000000, "n_features": 5000, "centers": 2 }
],
"split_kwargs": { "ignore": true }
}
},
{
"data": {
"dataset": ["airline_depdelay"],
"split_kwargs": { "ignore": true }
}
}
]
},
"TEMPLATES": {
"sklearn pca": {
"SETS": [
"sklearn-ex[cpu,gpu] implementations",
"pca parameters",
"high-load pca datasets"
]
},
"cuml pca": {
"SETS": [
"cuml implementation",
"pca parameters",
"cuml pca parameters",
"high-load pca datasets"
]
}
}
}