sunilrai486 commited on
Commit
c413b87
·
verified ·
1 Parent(s): 7059fca

Added config file for the model.

Browse files
Files changed (1) hide show
  1. config.json +40 -0
config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "sequential",
3
+ "layers": [
4
+ {
5
+ "type": "embedding",
6
+ "input_shape": [100],
7
+ "output_shape": [100, 100]
8
+ },
9
+ {
10
+ "type": "lstm",
11
+ "units": 64,
12
+ "activation": "tanh"
13
+ },
14
+ {
15
+ "type": "dense",
16
+ "units": 32,
17
+ "activation": "relu"
18
+ },
19
+ {
20
+ "type": "dropout",
21
+ "rate": 0.5
22
+ },
23
+ {
24
+ "type": "dense",
25
+ "units": 16,
26
+ "activation": "relu"
27
+ },
28
+ {
29
+ "type": "dense",
30
+ "units": 100,
31
+ "activation": "sigmoid"
32
+ }
33
+ ],
34
+ "optimizer": "adam",
35
+ "loss": "mean_squared_error",
36
+ "metrics": ["accuracy"],
37
+ "learning_rate": 0.001,
38
+ "batch_size": 32,
39
+ "epochs": 10
40
+ }