-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
58 lines (58 loc) · 2.31 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": "STOMP",
"description": "Implementation of https://doi.org/10.1109/ICDM.2016.0085.",
"inputDimensionality": "univariate",
"version": "0.3.0",
"authors": "Yan Zhu, Zachary Zimmerman, Nader Shakibay Senobari, Chin-Chia Michael Yeh, Gareth Funning, Abdullah Mueen, Philip Brisk, Eamonn Keogh",
"language": "R",
"type": "Detector",
"mainFile": "algorithm.r",
"learningType": "unsupervised",
"executionStep": {
"parameters": [
{
"name": "anomaly_window_size",
"type": "Int",
"defaultValue": 30,
"optional": "false",
"description": "Size of the sliding window."
},
{
"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": "n_jobs",
"type": "Int",
"defaultValue": 1,
"optional": "true",
"description": "The number of jobs to run in parallel. `-1` is not supported, defaults back to serial implementation."
},
{
"name": "random_state",
"type": "Int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
},
{
"name": "use_column_index",
"type": "int",
"defaultValue": 0,
"optional": "true",
"description": "The column index to use as input for the univariate algorithm for multivariate datasets. The selected single channel of the multivariate time series is analyzed by the algorithms. The index is 0-based and does not include the index-column ('timestamp'). The single channel of an univariate dataset, therefore, has index 0."
}
],
"modelInput": "none"
}
}