Update config.json
Browse files- config.json +6 -43
config.json
CHANGED
@@ -1,44 +1,7 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
"layers": [
|
9 |
-
{
|
10 |
-
"type": "Conv2D",
|
11 |
-
"filters": 64,
|
12 |
-
"kernel_size": [7, 7],
|
13 |
-
"activation": "relu",
|
14 |
-
"padding": "same",
|
15 |
-
"strides": [2, 2]
|
16 |
-
},
|
17 |
-
{
|
18 |
-
"type": "MaxPooling2D",
|
19 |
-
"pool_size": [3, 3],
|
20 |
-
"strides": [2, 2]
|
21 |
-
},
|
22 |
-
{
|
23 |
-
"type": "Residual Block",
|
24 |
-
"num_blocks": 34
|
25 |
-
},
|
26 |
-
{
|
27 |
-
"type": "GlobalAveragePooling2D"
|
28 |
-
},
|
29 |
-
{
|
30 |
-
"type": "Dense",
|
31 |
-
"units": 256,
|
32 |
-
"activation": "relu"
|
33 |
-
},
|
34 |
-
{
|
35 |
-
"type": "Dense",
|
36 |
-
"units": 1,
|
37 |
-
"activation": "sigmoid"
|
38 |
-
}
|
39 |
-
],
|
40 |
-
"loss": "binary_crossentropy",
|
41 |
-
"optimizer": "adam",
|
42 |
-
"metrics": ["accuracy"]
|
43 |
-
}
|
44 |
-
}
|
|
|
1 |
{
|
2 |
+
"model_type": "keras",
|
3 |
+
"framework": "tensorflow",
|
4 |
+
"image_size": [224, 224],
|
5 |
+
"num_labels": 28,
|
6 |
+
"model_name": "Retinal Disease Classification Model"
|
7 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|