-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
49 lines (49 loc) · 1.54 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
{
"title": "TARZAN",
"description": "Implementation of https://dl.acm.org/doi/10.1145/775047.775128",
"inputDimensionality": "univariate",
"version": "0.3.0",
"authors": "Eamonn Keogh, Stefano Leonardi, Bill Chiu",
"language": "Python",
"type": "Detector",
"mainFile": "algorithm.py",
"learningType": "semi-supervised",
"trainingStep": {
"parameters": [
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "none"
},
"executionStep": {
"parameters": [
{
"name": "anomaly_window_size",
"type": "int",
"defaultValue": 20,
"optional": "true",
"description": "Size of the sliding window. Equal to the discord length!"
},
{
"name": "alphabet_size",
"type": "int",
"defaultValue": 4,
"optional": "true",
"description": "Number of symbols used for discretization by SAX (performance parameter)"
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "required"
}
}