-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
51 lines (51 loc) · 2.04 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
{
"title": "Extended Isolation Forest (EIF)",
"description": "Extenstion to the basic isolation forest. Implementation of https://doi.org/10.1109/TKDE.2019.2947676. Code from https://github.com/sahandha/eif",
"inputDimensionality": "multivariate",
"version": "0.3.0",
"authors": "S. Hariri, M. Carrasco Kind, R. J. Brunner",
"type": "Detector",
"language": "Python",
"mainFile": "algorithm.py",
"learningType": "unsupervised",
"executionStep": {
"parameters": [
{
"name": "n_trees",
"type": "int",
"defaultValue": 200,
"optional": "false",
"description": "The number of decision trees (base estimators) in the forest (ensemble)."
},
{
"name": "max_samples",
"type": "float",
"defaultValue": null,
"optional": "false",
"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, X.shape[0])`."
},
{
"name": "extension_level",
"type": "int",
"defaultValue": null,
"optional": "true",
"description": "Extension level 0 resembles standard isolation forest. If unspecified (`null`), then `extension_level=X.shape[1] - 1`."
},
{
"name": "limit",
"type": "int",
"defaultValue": null,
"optional": "true",
"description": "The maximum allowed tree depth. This is by default set to average length of unsucessful search in a binary tree."
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "optional"
}
}