theadityamittal commited on
Commit
82f528f
·
verified ·
1 Parent(s): bd3e20e

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +33 -0
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "Sequential",
3
+ "input_size": [28, 28],
4
+ "layers": [
5
+ {
6
+ "type": "Flatten",
7
+ "input_shape": [28, 28]
8
+ },
9
+ {
10
+ "type": "Dense",
11
+ "units": 256,
12
+ "activation": "relu"
13
+ },
14
+ {
15
+ "type": "Dense",
16
+ "units": 128,
17
+ "activation": "relu"
18
+ },
19
+ {
20
+ "type": "Dense",
21
+ "units": 64,
22
+ "activation": "relu"
23
+ },
24
+ {
25
+ "type": "Dense",
26
+ "units": 10,
27
+ "activation": "softmax"
28
+ }
29
+ ],
30
+ "optimizer": "adam",
31
+ "loss_function": "sparse_categorical_crossentropy",
32
+ "metrics": ["accuracy"]
33
+ }