-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
63 lines (62 loc) · 1.23 KB
/
config.json
File metadata and controls
63 lines (62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"form": [
{
"type": "range",
"config": {
"name": "interval",
"label": "Interval",
"value": 5,
"max": 50,
"min": 5,
"step": 5
}
},
{
"type": "range",
"config": {
"name": "overlap",
"label": "Overlap %",
"value": 50,
"max": 80,
"min": 10,
"step": 5
}
},
{
"type": "range",
"config": {
"name": "dbscan_eps",
"label": "eps (DBSCAN)",
"value": 0.1,
"max": 0.2,
"min": 0.05,
"step": 0.01
}
},
{
"type": "range",
"config": {
"name": "dbscan_min_samples",
"label": "min samples (DBSCAN)",
"value": 5,
"max": 10,
"min": 2,
"step": 1
}
},
{
"type": "dropdown",
"config": {
"label": "Filter Function",
"name": "filter_function",
"options": ["sum", "mean", "median", "max", "min", "std", "dist_mean"]
}
}
],
"selection": [
{
"name": "SIZE of node",
"attr": "size"
}
]
}