-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathdbscan.json
More file actions
45 lines (45 loc) · 1.49 KB
/
dbscan.json
File metadata and controls
45 lines (45 loc) · 1.49 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
42
43
44
45
{
"INCLUDE": ["../common/sklearn.json", "../common/dbscan.json"],
"PARAMETERS_SETS": {
"dbscan datasets": {
"data": [
{ "dataset": "cifar", "split_kwargs": { "train_size": 15000 } },
{ "dataset": "mnist", "split_kwargs": { "train_size": 40000 } },
{ "dataset": "susy", "split_kwargs": { "train_size": 100000 } },
{
"dataset": "skin_segmentation",
"split_kwargs": { "train_size": 100000 },
"preprocessing_kwargs": { "normalize": true }
},
{
"source": "make_blobs",
"generation_kwargs": {
"centers": 10,
"n_samples": 50000,
"n_features": [8, 64, 512],
"cluster_std": 2.0
},
"split_kwargs": { "ignore": true }
}
]
}
},
"TEMPLATES": {
"sklearn dbscan": {
"SETS": [
"sklearn-ex[cpu,gpu] implementations",
"common dbscan parameters",
"sklearn dbscan parameters",
"dbscan datasets"
]
},
"cuml dbscan": {
"SETS": [
"cuml implementation",
"common dbscan parameters",
"cuml dbscan parameters",
"dbscan datasets"
]
}
}
}