-
Notifications
You must be signed in to change notification settings - Fork 32
/
manifest.json
41 lines (41 loc) · 1.52 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
{
"title": "Subsequence Fast-MCD",
"description": "Implementation of https://doi.org/10.2307/1270566 with sliding windows as input",
"inputDimensionality": "univariate",
"version": "0.3.0",
"authors": "Sebastian Schmidl",
"language": "Python",
"type": "Detector",
"learningType": "semi-supervised",
"mainFile": "algorithm.py",
"trainingStep": {
"parameters": [
{
"name": "store_precision",
"type": "boolean",
"defaultValue": true,
"optional": "true",
"description": "Specify if the estimated precision is stored"
},
{
"name": "support_fraction",
"type": "float",
"defaultValue": null,
"optional": "true",
"description": "The proportion of points to be included in the support of the raw MCD estimate. Default is None, which implies that the minimum value of support_fraction will be used within the algorithm: `(n_sample + n_features + 1) / 2`. The parameter must be in the range (0, 1)."
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Determines the pseudo random number generator for shuffling the data."
}
],
"modelInput": "none"
},
"executionStep": {
"parameters": [],
"modelInput": "required"
}
}