-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
65 lines (65 loc) · 2.28 KB
/
manifest.json
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
64
65
{
"title": "TSBitmap",
"description": "Implementation of https://dl.acm.org/doi/abs/10.5555/1116877.1116907",
"inputDimensionality": "univariate",
"version": "0.3.0",
"authors": "Li Wei, Nitin Kumar, Venkata Lolla, Eamonn Keogh, Stefano Lonardi, Chotirat Ann Ratanamahatana",
"language": "Python",
"type": "Detector",
"mainFile": "algorithm.py",
"learningType": "unsupervised",
"executionStep": {
"parameters": [
{
"name": "feature_window_size",
"type": "int",
"defaultValue": 100,
"optional": "false",
"description": "Size of the tumbling windows used for SAX discretization."
},
{
"name": "lead_window_size",
"type": "int",
"defaultValue": 200,
"optional": "false",
"description": "How far to look ahead to create lead bitmap."
},
{
"name": "lag_window_size",
"type": "int",
"defaultValue": 300,
"optional": "false",
"description": "How far to look back to create the lag bitmap."
},
{
"name": "alphabet_size",
"type": "int",
"defaultValue": 5,
"optional": "false",
"description": "Number of bins for SAX discretization."
},
{
"name": "level_size",
"type": "int",
"defaultValue": 3,
"optional": "false",
"description": "Desired level of recursion of the bitmap."
},
{
"name": "compression_ratio",
"type": "int",
"defaultValue": 2,
"optional": "true",
"description": "How much to compress the timeseries in the PAA step. If `compression_ration == 1`, no compression."
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "none"
}
}