-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
58 lines (58 loc) · 1.94 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
{
"title": "mVALMOD",
"description": "Implementation of https://doi.org/10.1007/s10618-020-00685-w summed up for every channel.",
"inputDimensionality": "multivariate",
"version": "0.3.0",
"authors": "Michele Linardi, Yan Zhu, Themis Palpanas, Eamonn Keogh",
"language": "R",
"type": "Detector",
"mainFile": "algorithm.r",
"learningType": "unsupervised",
"executionStep": {
"parameters": [
{
"name": "min_anomaly_window_size",
"type": "Int",
"defaultValue": 30,
"optional": "false",
"description": "Minimum sliding window size"
},
{
"name": "max_anomaly_window_size",
"type": "Int",
"defaultValue": 40,
"optional": "false",
"description": "Maximum sliding window size"
},
{
"name": "heap_size",
"type": "Int",
"defaultValue": 50,
"optional": "true",
"description": "Size of the distance profile heap buffer"
},
{
"name": "exclusion_zone",
"type": "Float",
"defaultValue": 0.5,
"optional": "true",
"description": "Size of the exclusion zone as a factor of the window_size. This prevents self-matches."
},
{
"name": "verbose",
"type": "Int",
"defaultValue": 1,
"optional": "true",
"description": "Controls logging verbosity."
},
{
"name": "random_state",
"type": "Int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "none"
}
}