Create new file
Browse files- config.json +177 -0
config.json
ADDED
@@ -0,0 +1,177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{'name': 'sequential_2',
|
2 |
+
'layers': [{'class_name': 'InputLayer',
|
3 |
+
'config': {'batch_input_shape': (None, 180, 180, 3),
|
4 |
+
'dtype': 'float32',
|
5 |
+
'sparse': False,
|
6 |
+
'ragged': False,
|
7 |
+
'name': 'sequential_1_input'}},
|
8 |
+
{'class_name': 'Sequential',
|
9 |
+
'config': {'name': 'sequential_1',
|
10 |
+
'layers': [{'class_name': 'InputLayer',
|
11 |
+
'config': {'batch_input_shape': (None, 180, 180, 3),
|
12 |
+
'dtype': 'float32',
|
13 |
+
'sparse': False,
|
14 |
+
'ragged': False,
|
15 |
+
'name': 'random_flip_input'}},
|
16 |
+
{'class_name': 'RandomFlip',
|
17 |
+
'config': {'name': 'random_flip',
|
18 |
+
'trainable': True,
|
19 |
+
'batch_input_shape': (None, 180, 180, 3),
|
20 |
+
'dtype': 'float32',
|
21 |
+
'mode': 'horizontal',
|
22 |
+
'seed': None}},
|
23 |
+
{'class_name': 'RandomRotation',
|
24 |
+
'config': {'name': 'random_rotation',
|
25 |
+
'trainable': True,
|
26 |
+
'dtype': 'float32',
|
27 |
+
'factor': 0.1,
|
28 |
+
'fill_mode': 'reflect',
|
29 |
+
'fill_value': 0.0,
|
30 |
+
'interpolation': 'bilinear',
|
31 |
+
'seed': None}},
|
32 |
+
{'class_name': 'RandomZoom',
|
33 |
+
'config': {'name': 'random_zoom',
|
34 |
+
'trainable': True,
|
35 |
+
'dtype': 'float32',
|
36 |
+
'height_factor': 0.1,
|
37 |
+
'width_factor': None,
|
38 |
+
'fill_mode': 'reflect',
|
39 |
+
'fill_value': 0.0,
|
40 |
+
'interpolation': 'bilinear',
|
41 |
+
'seed': None}}]}},
|
42 |
+
{'class_name': 'Rescaling',
|
43 |
+
'config': {'name': 'rescaling_1',
|
44 |
+
'trainable': True,
|
45 |
+
'batch_input_shape': (None, 180, 180, 3),
|
46 |
+
'dtype': 'float32',
|
47 |
+
'scale': 0.00392156862745098,
|
48 |
+
'offset': 0.0}},
|
49 |
+
{'class_name': 'Conv2D',
|
50 |
+
'config': {'name': 'conv2d_3',
|
51 |
+
'trainable': True,
|
52 |
+
'dtype': 'float32',
|
53 |
+
'filters': 16,
|
54 |
+
'kernel_size': (3, 3),
|
55 |
+
'strides': (1, 1),
|
56 |
+
'padding': 'same',
|
57 |
+
'data_format': 'channels_last',
|
58 |
+
'dilation_rate': (1, 1),
|
59 |
+
'groups': 1,
|
60 |
+
'activation': 'relu',
|
61 |
+
'use_bias': True,
|
62 |
+
'kernel_initializer': {'class_name': 'GlorotUniform',
|
63 |
+
'config': {'seed': None}},
|
64 |
+
'bias_initializer': {'class_name': 'Zeros', 'config': {}},
|
65 |
+
'kernel_regularizer': None,
|
66 |
+
'bias_regularizer': None,
|
67 |
+
'activity_regularizer': None,
|
68 |
+
'kernel_constraint': None,
|
69 |
+
'bias_constraint': None}},
|
70 |
+
{'class_name': 'MaxPooling2D',
|
71 |
+
'config': {'name': 'max_pooling2d_3',
|
72 |
+
'trainable': True,
|
73 |
+
'dtype': 'float32',
|
74 |
+
'pool_size': (2, 2),
|
75 |
+
'padding': 'valid',
|
76 |
+
'strides': (2, 2),
|
77 |
+
'data_format': 'channels_last'}},
|
78 |
+
{'class_name': 'Conv2D',
|
79 |
+
'config': {'name': 'conv2d_4',
|
80 |
+
'trainable': True,
|
81 |
+
'dtype': 'float32',
|
82 |
+
'filters': 32,
|
83 |
+
'kernel_size': (3, 3),
|
84 |
+
'strides': (1, 1),
|
85 |
+
'padding': 'same',
|
86 |
+
'data_format': 'channels_last',
|
87 |
+
'dilation_rate': (1, 1),
|
88 |
+
'groups': 1,
|
89 |
+
'activation': 'relu',
|
90 |
+
'use_bias': True,
|
91 |
+
'kernel_initializer': {'class_name': 'GlorotUniform',
|
92 |
+
'config': {'seed': None}},
|
93 |
+
'bias_initializer': {'class_name': 'Zeros', 'config': {}},
|
94 |
+
'kernel_regularizer': None,
|
95 |
+
'bias_regularizer': None,
|
96 |
+
'activity_regularizer': None,
|
97 |
+
'kernel_constraint': None,
|
98 |
+
'bias_constraint': None}},
|
99 |
+
{'class_name': 'MaxPooling2D',
|
100 |
+
'config': {'name': 'max_pooling2d_4',
|
101 |
+
'trainable': True,
|
102 |
+
'dtype': 'float32',
|
103 |
+
'pool_size': (2, 2),
|
104 |
+
'padding': 'valid',
|
105 |
+
'strides': (2, 2),
|
106 |
+
'data_format': 'channels_last'}},
|
107 |
+
{'class_name': 'Conv2D',
|
108 |
+
'config': {'name': 'conv2d_5',
|
109 |
+
'trainable': True,
|
110 |
+
'dtype': 'float32',
|
111 |
+
'filters': 64,
|
112 |
+
'kernel_size': (3, 3),
|
113 |
+
'strides': (1, 1),
|
114 |
+
'padding': 'same',
|
115 |
+
'data_format': 'channels_last',
|
116 |
+
'dilation_rate': (1, 1),
|
117 |
+
'groups': 1,
|
118 |
+
'activation': 'relu',
|
119 |
+
'use_bias': True,
|
120 |
+
'kernel_initializer': {'class_name': 'GlorotUniform',
|
121 |
+
'config': {'seed': None}},
|
122 |
+
'bias_initializer': {'class_name': 'Zeros', 'config': {}},
|
123 |
+
'kernel_regularizer': None,
|
124 |
+
'bias_regularizer': None,
|
125 |
+
'activity_regularizer': None,
|
126 |
+
'kernel_constraint': None,
|
127 |
+
'bias_constraint': None}},
|
128 |
+
{'class_name': 'MaxPooling2D',
|
129 |
+
'config': {'name': 'max_pooling2d_5',
|
130 |
+
'trainable': True,
|
131 |
+
'dtype': 'float32',
|
132 |
+
'pool_size': (2, 2),
|
133 |
+
'padding': 'valid',
|
134 |
+
'strides': (2, 2),
|
135 |
+
'data_format': 'channels_last'}},
|
136 |
+
{'class_name': 'Dropout',
|
137 |
+
'config': {'name': 'dropout',
|
138 |
+
'trainable': True,
|
139 |
+
'dtype': 'float32',
|
140 |
+
'rate': 0.2,
|
141 |
+
'noise_shape': None,
|
142 |
+
'seed': None}},
|
143 |
+
{'class_name': 'Flatten',
|
144 |
+
'config': {'name': 'flatten_1',
|
145 |
+
'trainable': True,
|
146 |
+
'dtype': 'float32',
|
147 |
+
'data_format': 'channels_last'}},
|
148 |
+
{'class_name': 'Dense',
|
149 |
+
'config': {'name': 'dense_2',
|
150 |
+
'trainable': True,
|
151 |
+
'dtype': 'float32',
|
152 |
+
'units': 128,
|
153 |
+
'activation': 'relu',
|
154 |
+
'use_bias': True,
|
155 |
+
'kernel_initializer': {'class_name': 'GlorotUniform',
|
156 |
+
'config': {'seed': None}},
|
157 |
+
'bias_initializer': {'class_name': 'Zeros', 'config': {}},
|
158 |
+
'kernel_regularizer': None,
|
159 |
+
'bias_regularizer': None,
|
160 |
+
'activity_regularizer': None,
|
161 |
+
'kernel_constraint': None,
|
162 |
+
'bias_constraint': None}},
|
163 |
+
{'class_name': 'Dense',
|
164 |
+
'config': {'name': 'dense_3',
|
165 |
+
'trainable': True,
|
166 |
+
'dtype': 'float32',
|
167 |
+
'units': 5,
|
168 |
+
'activation': 'linear',
|
169 |
+
'use_bias': True,
|
170 |
+
'kernel_initializer': {'class_name': 'GlorotUniform',
|
171 |
+
'config': {'seed': None}},
|
172 |
+
'bias_initializer': {'class_name': 'Zeros', 'config': {}},
|
173 |
+
'kernel_regularizer': None,
|
174 |
+
'bias_regularizer': None,
|
175 |
+
'activity_regularizer': None,
|
176 |
+
'kernel_constraint': None,
|
177 |
+
'bias_constraint': None}}]}
|