-
Notifications
You must be signed in to change notification settings - Fork 30
/
manifest.json
49 lines (49 loc) · 1.37 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": "LaserDBN",
"description": "Implementation of https://doi.org/10.1007/978-3-662-53806-7_3",
"inputDimensionality": "multivariate",
"version": "0.3.0",
"authors": "Alberto Ogbechie, Javier Díaz-Rozo, Pedro Larrañaga, Concha Bielza",
"language": "Python",
"type": "Detector",
"learningType": "Semi-Supervised",
"mainFile": "algorithm.py",
"trainingStep": {
"parameters": [
{
"name": "timesteps",
"type": "int",
"defaultValue": 2,
"optional": "true",
"description": "Number of time steps the DBN builds probabilities for (min: 2)"
},
{
"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 the random number generator"
}
],
"modelInput": "none"
},
"executionStep": {
"parameters": [
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for the random number generator"
}
],
"modelInput": "required"
}
}