-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
54 lines (54 loc) · 2.07 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
{
"title": "FFT",
"description": "Implementation of https://dl.acm.org/doi/10.5555/1789574.1789615 proudly provided by members of the HPI AKITA project.",
"inputDimensionality": "univariate",
"version": "0.3.0",
"authors": "Faraz Rasheed, Peter Peng, Reda Alhajj, Jon Rokne",
"language": "Python",
"type": "Detector",
"mainFile": "algorithm.py",
"learningType": "unsupervised",
"executionStep": {
"parameters": [
{
"name": "fft_parameters",
"type": "int",
"defaultValue": 5,
"optional": "true",
"description": "Number of parameters to be used in IFFT for creating the fit."
},{
"name": "context_window_size",
"type": "int",
"defaultValue": 21,
"optional": "true",
"description": "Centered window of neighbors to consider for the calculation of local outliers' z_scores"
},{
"name": "local_outlier_threshold",
"type": "float",
"defaultValue": 0.6,
"optional": "true",
"description": "Outlier threshold in multiples of sigma for local outliers"
},{
"name": "max_anomaly_window_size",
"type": "int",
"defaultValue": 50,
"optional": "true",
"description": "Maximum size of outlier regions."
},{
"name": "max_sign_change_distance",
"type": "int",
"defaultValue": 10,
"optional": "true",
"description": "Maximum gap between two closed oppositely signed local outliers to detect a sign change for outlier region grouping."
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for the random number generator"
}
],
"modelInput": "none"
}
}