Create config.json
Browse files- config.json +132 -0
config.json
ADDED
@@ -0,0 +1,132 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Sequential"
|
4 |
+
],
|
5 |
+
"input_layers": [
|
6 |
+
{
|
7 |
+
"class_name": "InputLayer",
|
8 |
+
"config": {
|
9 |
+
"batch_input_shape": [
|
10 |
+
null,
|
11 |
+
1
|
12 |
+
],
|
13 |
+
"dtype": "float32",
|
14 |
+
"sparse": false,
|
15 |
+
"ragged": false,
|
16 |
+
"name": "input_1"
|
17 |
+
}
|
18 |
+
}
|
19 |
+
],
|
20 |
+
"layers": [
|
21 |
+
{
|
22 |
+
"class_name": "Dense",
|
23 |
+
"config": {
|
24 |
+
"name": "dense",
|
25 |
+
"trainable": true,
|
26 |
+
"batch_input_shape": [
|
27 |
+
null,
|
28 |
+
1
|
29 |
+
],
|
30 |
+
"dtype": "float32",
|
31 |
+
"units": 64,
|
32 |
+
"activation": "relu",
|
33 |
+
"use_bias": true,
|
34 |
+
"kernel_initializer": {
|
35 |
+
"class_name": "GlorotUniform",
|
36 |
+
"config": {
|
37 |
+
"seed": null
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"bias_initializer": {
|
41 |
+
"class_name": "Zeros",
|
42 |
+
"config": {}
|
43 |
+
},
|
44 |
+
"kernel_regularizer": null,
|
45 |
+
"bias_regularizer": null,
|
46 |
+
"activity_regularizer": null,
|
47 |
+
"kernel_constraint": null,
|
48 |
+
"bias_constraint": null
|
49 |
+
}
|
50 |
+
},
|
51 |
+
{
|
52 |
+
"class_name": "Dense",
|
53 |
+
"config": {
|
54 |
+
"name": "dense_1",
|
55 |
+
"trainable": true,
|
56 |
+
"dtype": "float32",
|
57 |
+
"units": 32,
|
58 |
+
"activation": "relu",
|
59 |
+
"use_bias": true,
|
60 |
+
"kernel_initializer": {
|
61 |
+
"class_name": "GlorotUniform",
|
62 |
+
"config": {
|
63 |
+
"seed": null
|
64 |
+
}
|
65 |
+
},
|
66 |
+
"bias_initializer": {
|
67 |
+
"class_name": "Zeros",
|
68 |
+
"config": {}
|
69 |
+
},
|
70 |
+
"kernel_regularizer": null,
|
71 |
+
"bias_regularizer": null,
|
72 |
+
"activity_regularizer": null,
|
73 |
+
"kernel_constraint": null,
|
74 |
+
"bias_constraint": null
|
75 |
+
}
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"class_name": "Dense",
|
79 |
+
"config": {
|
80 |
+
"name": "dense_2",
|
81 |
+
"trainable": true,
|
82 |
+
"dtype": "float32",
|
83 |
+
"units": 2,
|
84 |
+
"activation": null,
|
85 |
+
"use_bias": true,
|
86 |
+
"kernel_initializer": {
|
87 |
+
"class_name": "GlorotUniform",
|
88 |
+
"config": {
|
89 |
+
"seed": null
|
90 |
+
}
|
91 |
+
},
|
92 |
+
"bias_initializer": {
|
93 |
+
"class_name": "Zeros",
|
94 |
+
"config": {}
|
95 |
+
},
|
96 |
+
"kernel_regularizer": null,
|
97 |
+
"bias_regularizer": null,
|
98 |
+
"activity_regularizer": null,
|
99 |
+
"kernel_constraint": null,
|
100 |
+
"bias_constraint": null
|
101 |
+
}
|
102 |
+
}
|
103 |
+
],
|
104 |
+
"output_layers": [
|
105 |
+
{
|
106 |
+
"class_name": "Dense",
|
107 |
+
"config": {
|
108 |
+
"name": "dense_2",
|
109 |
+
"trainable": true,
|
110 |
+
"dtype": "float32",
|
111 |
+
"units": 2,
|
112 |
+
"activation": null,
|
113 |
+
"use_bias": true,
|
114 |
+
"kernel_initializer": {
|
115 |
+
"class_name": "GlorotUniform",
|
116 |
+
"config": {
|
117 |
+
"seed": null
|
118 |
+
}
|
119 |
+
},
|
120 |
+
"bias_initializer": {
|
121 |
+
"class_name": "Zeros",
|
122 |
+
"config": {}
|
123 |
+
},
|
124 |
+
"kernel_regularizer": null,
|
125 |
+
"bias_regularizer": null,
|
126 |
+
"activity_regularizer": null,
|
127 |
+
"kernel_constraint": null,
|
128 |
+
"bias_constraint": null
|
129 |
+
}
|
130 |
+
}
|
131 |
+
]
|
132 |
+
}
|