fokhrul006 commited on
Commit
1a0bd54
·
verified ·
1 Parent(s): f900fea

init version

Browse files
Files changed (3) hide show
  1. best_model.pth +3 -0
  2. class_mapping.json +4 -0
  3. 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
+ }