Rianknow commited on
Commit
a5d5f4c
·
1 Parent(s): 4ca46bf

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +30 -0
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "layers": [
3
+ {
4
+ "name": "LSTM",
5
+ "config": {
6
+ "units": 128,
7
+ "dropout": 0.2,
8
+ "recurrent_dropout": 0.2,
9
+ "input_shape": [
10
+ 34,
11
+ 1
12
+ ]
13
+ }
14
+ },
15
+ {
16
+ "name": "Dense",
17
+ "config": {
18
+ "units": 1,
19
+ "activation": "sigmoid"
20
+ }
21
+ }
22
+ ],
23
+ "compile_args": {
24
+ "loss": "binary_crossentropy",
25
+ "optimizer": "adam",
26
+ "metrics": [
27
+ "accuracy"
28
+ ]
29
+ }
30
+ }