-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
51 lines (51 loc) · 1.38 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
{
"title": "Triple ES (Holt-Winter's)",
"description": "Implementation of http://www.diva-portal.org/smash/get/diva2:1198551/FULLTEXT02.pdf",
"inputDimensionality": "univariate",
"version": "0.3.0",
"authors": "Adam Aboode",
"language": "Python",
"type": "Detector",
"learningType": "Unsupervised",
"mainFile": "algorithm.py",
"executionStep": {
"parameters": [
{
"name": "train_window_size",
"type": "int",
"defaultValue": 200,
"optional": "false",
"description": "size of each TripleES model to predict the next timestep"
},
{
"name": "period",
"type": "int",
"defaultValue": 100,
"optional": "false",
"description": "number of time units at which events happen regularly/periodically"
},
{
"name": "trend",
"type": "enum[add, mul]",
"defaultValue": "add",
"optional": "true",
"description": "type of trend component"
},
{
"name": "seasonal",
"type": "enum[add, mul]",
"defaultValue": "add",
"optional": "true",
"description": "type of seasonal component"
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "none"
}
}