MasumBhuiyan commited on
Commit
acee9c8
1 Parent(s): f71c51d

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +159 -4
config.json CHANGED
@@ -1,5 +1,160 @@
1
  {
2
- "input_size": 9,
3
- "output_size": 1
4
- }
5
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "name": "sequential_3",
3
+ "layers": [
4
+ {
5
+ "module": "keras.layers",
6
+ "class_name": "InputLayer",
7
+ "config": {
8
+ "batch_input_shape": [
9
+ null,
10
+ null
11
+ ],
12
+ "dtype": "float32",
13
+ "sparse": false,
14
+ "ragged": false,
15
+ "name": "normalization_input"
16
+ },
17
+ "registered_name": null
18
+ },
19
+ {
20
+ "module": "keras.layers",
21
+ "class_name": "Normalization",
22
+ "config": {
23
+ "name": "normalization",
24
+ "trainable": true,
25
+ "dtype": "float32",
26
+ "batch_input_shape": [
27
+ null,
28
+ null
29
+ ],
30
+ "axis": [
31
+ -1
32
+ ],
33
+ "invert": false,
34
+ "mean": null,
35
+ "variance": null
36
+ },
37
+ "registered_name": null,
38
+ "build_config": {
39
+ "input_shape": [
40
+ null,
41
+ 9
42
+ ]
43
+ }
44
+ },
45
+ {
46
+ "module": "keras.layers",
47
+ "class_name": "Dense",
48
+ "config": {
49
+ "name": "dense_5",
50
+ "trainable": true,
51
+ "dtype": "float32",
52
+ "units": 64,
53
+ "activation": "relu",
54
+ "use_bias": true,
55
+ "kernel_initializer": {
56
+ "module": "keras.initializers",
57
+ "class_name": "GlorotUniform",
58
+ "config": {
59
+ "seed": null
60
+ },
61
+ "registered_name": null
62
+ },
63
+ "bias_initializer": {
64
+ "module": "keras.initializers",
65
+ "class_name": "Zeros",
66
+ "config": {},
67
+ "registered_name": null
68
+ },
69
+ "kernel_regularizer": null,
70
+ "bias_regularizer": null,
71
+ "activity_regularizer": null,
72
+ "kernel_constraint": null,
73
+ "bias_constraint": null
74
+ },
75
+ "registered_name": null,
76
+ "build_config": {
77
+ "input_shape": [
78
+ null,
79
+ 9
80
+ ]
81
+ }
82
+ },
83
+ {
84
+ "module": "keras.layers",
85
+ "class_name": "Dense",
86
+ "config": {
87
+ "name": "dense_6",
88
+ "trainable": true,
89
+ "dtype": "float32",
90
+ "units": 64,
91
+ "activation": "relu",
92
+ "use_bias": true,
93
+ "kernel_initializer": {
94
+ "module": "keras.initializers",
95
+ "class_name": "GlorotUniform",
96
+ "config": {
97
+ "seed": null
98
+ },
99
+ "registered_name": null
100
+ },
101
+ "bias_initializer": {
102
+ "module": "keras.initializers",
103
+ "class_name": "Zeros",
104
+ "config": {},
105
+ "registered_name": null
106
+ },
107
+ "kernel_regularizer": null,
108
+ "bias_regularizer": null,
109
+ "activity_regularizer": null,
110
+ "kernel_constraint": null,
111
+ "bias_constraint": null
112
+ },
113
+ "registered_name": null,
114
+ "build_config": {
115
+ "input_shape": [
116
+ null,
117
+ 64
118
+ ]
119
+ }
120
+ },
121
+ {
122
+ "module": "keras.layers",
123
+ "class_name": "Dense",
124
+ "config": {
125
+ "name": "dense_7",
126
+ "trainable": true,
127
+ "dtype": "float32",
128
+ "units": 1,
129
+ "activation": "linear",
130
+ "use_bias": true,
131
+ "kernel_initializer": {
132
+ "module": "keras.initializers",
133
+ "class_name": "GlorotUniform",
134
+ "config": {
135
+ "seed": null
136
+ },
137
+ "registered_name": null
138
+ },
139
+ "bias_initializer": {
140
+ "module": "keras.initializers",
141
+ "class_name": "Zeros",
142
+ "config": {},
143
+ "registered_name": null
144
+ },
145
+ "kernel_regularizer": null,
146
+ "bias_regularizer": null,
147
+ "activity_regularizer": null,
148
+ "kernel_constraint": null,
149
+ "bias_constraint": null
150
+ },
151
+ "registered_name": null,
152
+ "build_config": {
153
+ "input_shape": [
154
+ null,
155
+ 64
156
+ ]
157
+ }
158
+ }
159
+ ]
160
+ }