-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
49 lines (49 loc) · 1.42 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
{
"title": "MultiHMM",
"description": "Implementation of https://doi.org/10.1016/j.asoc.2017.06.035",
"inputDimensionality": "multivariate",
"version": "0.3.0",
"authors": "Jinbo Li, Witold Pedrycz, Iqbal Jamal",
"language": "Python",
"type": "Detector",
"learningType": "Supervised",
"mainFile": "algorithm.py",
"trainingStep": {
"parameters": [
{
"name": "discretizer",
"type": "enum[sugeno,choquet,fcm]",
"defaultValue": "fcm",
"optional": "true",
"description": "Available discretizers are \"sugeno\", \"choquet\", and \"fcm\". If only 1 feature in time series, K-Bins discretizer is used."
},
{
"name": "n_bins",
"type": "int",
"defaultValue": 10,
"optional": "true",
"description": "Number of bins used for discretization."
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "none"
},
"executionStep": {
"parameters": [
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "required"
}
}