-
Notifications
You must be signed in to change notification settings - Fork 31
/
manifest.json
72 lines (72 loc) · 2.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"title": "Subsequence IF",
"description": "Isolation Forest on sliding windows to detect subsequence anomalies.",
"inputDimensionality": "univariate",
"version": "0.3.1",
"authors": "Sebastian Schmidl",
"language": "Python",
"type": "Detector",
"mainFile": "algorithm.py",
"learningType": "unsupervised",
"executionStep": {
"parameters": [
{
"name": "window_size",
"type": "int",
"defaultValue": 100,
"optional": "true",
"description": "Size of the sliding windows to extract subsequences as input to LOF."
},
{
"name": "n_trees",
"type": "int",
"defaultValue": 100,
"optional": "true",
"description": "The number of decision trees (base estimators) in the forest (ensemble)."
},
{
"name": "max_samples",
"type": "float",
"defaultValue": null,
"optional": "true",
"description": "The number of samples to draw from X to train each base estimator: `max_samples * X.shape[0]`. If unspecified (`null`), then `max_samples=min(256, n_samples)`."
},
{
"name": "max_features",
"type": "float",
"defaultValue": 1.0,
"optional": "true",
"description": "The number of features to draw from X to train each base estimator: `max_features * X.shape[1]`."
},
{
"name": "bootstrap",
"type": "boolean",
"defaultValue": "false",
"optional": "true",
"description": "If True, individual trees are fit on random subsets of the training data sampled with replacement. If False, sampling without replacement is performed."
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
},
{
"name": "verbose",
"type": "int",
"defaultValue": 0,
"optional": "true",
"description": "Controls the verbosity of the tree building process logs."
},
{
"name": "n_jobs",
"type": "int",
"defaultValue": 1,
"optional": "true",
"description": "The number of jobs to run in parallel. If -1, then the number of jobs is set to the number of cores."
}
],
"modelInput": "none"
}
}