fokhrul006
commited on
init version
Browse files- best_model.pth +3 -0
- class_mapping.json +4 -0
- config.json +14 -0
best_model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eafa4aa5726990c431d4de3c0d924698466395fef838b72def08f4ef9c473ce2
|
3 |
+
size 335687266
|
class_mapping.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"0": "early_blight",
|
3 |
+
"1": "late_blight"
|
4 |
+
}
|
config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_name": "Potato",
|
3 |
+
"num_classes": 2,
|
4 |
+
"class_names": [
|
5 |
+
"early_blight",
|
6 |
+
"late_blight"
|
7 |
+
],
|
8 |
+
"class_to_idx": {
|
9 |
+
"early_blight": 0,
|
10 |
+
"late_blight": 1
|
11 |
+
},
|
12 |
+
"model_name": "convnext_tiny_in22k",
|
13 |
+
"image_size": 256
|
14 |
+
}
|