Create config.json
Browse files- config.json +30 -0
config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model": "EfficientNetB3",
|
| 3 |
+
"weights": "EfficientNetB3-corn-100.0.h5",
|
| 4 |
+
"license": "mit",
|
| 5 |
+
"language": "en",
|
| 6 |
+
"metrics": {
|
| 7 |
+
"main": "accuracy"
|
| 8 |
+
},
|
| 9 |
+
"pipeline_tag": "image-classification",
|
| 10 |
+
"classes": [
|
| 11 |
+
{
|
| 12 |
+
"id": 0,
|
| 13 |
+
"name": "Healthy corn",
|
| 14 |
+
"height": 224,
|
| 15 |
+
"width": 224,
|
| 16 |
+
"scale_by": 1
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"id": 1,
|
| 20 |
+
"name": "Infected",
|
| 21 |
+
"height": 224,
|
| 22 |
+
"width": 224,
|
| 23 |
+
"scale_by": 1
|
| 24 |
+
}
|
| 25 |
+
],
|
| 26 |
+
"preprocessing": {
|
| 27 |
+
"resize": [224, 224],
|
| 28 |
+
"scale": 255
|
| 29 |
+
}
|
| 30 |
+
}
|