Upload config.json
Browse files- config.json +23 -0
config.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"CustomInceptionV3"
|
4 |
+
],
|
5 |
+
"input_shape": [224, 224, 3],
|
6 |
+
"weights": "imagenet",
|
7 |
+
"include_top": false,
|
8 |
+
"flatten": true,
|
9 |
+
"dense_units": 3,
|
10 |
+
"activation": "softmax",
|
11 |
+
"train_datagen_params": {
|
12 |
+
"rescale": 0.00392156862,
|
13 |
+
"shear_range": 0.2,
|
14 |
+
"zoom_range": 0.2,
|
15 |
+
"horizontal_flip": true
|
16 |
+
},
|
17 |
+
"test_datagen_params": {
|
18 |
+
"rescale": 0.00392156862
|
19 |
+
},
|
20 |
+
"target_size": [224, 224],
|
21 |
+
"batch_size": 32,
|
22 |
+
"class_mode": "categorical"
|
23 |
+
}
|