-
Notifications
You must be signed in to change notification settings - Fork 32
/
manifest.json
108 lines (108 loc) · 2.76 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"title": "Bagel",
"description": "Implementation of https://doi.org/10.1109/PCCC.2018.8710885",
"inputDimensionality": "univariate",
"version": "0.3.0",
"authors": "Zeyan Li, Wenxiao Chen, Dan Pei",
"language": "Python",
"type": "Detector",
"mainFile": "algorithm.py",
"learningType": "semi-supervised",
"trainingStep": {
"parameters": [
{
"name": "window_size",
"type": "int",
"defaultValue": 120,
"optional": "true",
"description": "Size of sliding windows"
},
{
"name": "latent_size",
"type": "int",
"defaultValue": 8,
"optional": "true",
"description": "Dimensionality of encoding"
},
{
"name": "hidden_layer_shape",
"type": "List[int]",
"defaultValue": [
100,
100
],
"optional": "true",
"description": "NN hidden layers structure"
},
{
"name": "dropout",
"type": "float",
"defaultValue": 0.1,
"optional":"true",
"description": "Rate of conditional dropout used"
},
{
"name": "cuda",
"type": "boolean",
"defaultValue": false,
"optional": "true",
"description": "Use GPU for training"
},
{
"name": "epochs",
"type": "int",
"defaultValue": 50,
"optional": "true",
"description": "Number of passes over the entire dataset"
},
{
"name": "batch_size",
"type": "int",
"description": "Batch size for input data",
"defaultValue": 128,
"optional": "true"
},
{
"name": "split",
"type": "float",
"defaultValue": 0.8,
"optional": "true",
"description": "Fraction to split training data by for validation"
},
{
"name": "early_stopping_delta",
"type": "float",
"defaultValue": 0.5,
"optional": "true",
"description": "If loss is `delta` or less smaller for `patience` epochs, stop"
},
{
"name": "early_stopping_patience",
"type": "int",
"defaultValue": 10,
"optional": "true",
"description": "If loss is `delta` or less smaller for `patience` epochs, stop"
},
{
"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"
}
}