fokhrul006 commited on
Commit
e8cb584
·
verified ·
1 Parent(s): d7009bb

init version

Browse files
Files changed (3) hide show
  1. best_model.pth +3 -0
  2. class_mapping.json +6 -0
  3. config.json +18 -0
best_model.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:344e2bf0affee0ee79dc7cc6303f9fdf83d56f421588a741a64015f6d27ad790
3
+ size 335709858
class_mapping.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "0": "anthracnose",
3
+ "1": "curl_virus",
4
+ "2": "early_blight",
5
+ "3": "late_blight"
6
+ }
config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_name": "Tomato",
3
+ "num_classes": 4,
4
+ "class_names": [
5
+ "anthracnose",
6
+ "curl_virus",
7
+ "early_blight",
8
+ "late_blight"
9
+ ],
10
+ "class_to_idx": {
11
+ "anthracnose": 0,
12
+ "curl_virus": 1,
13
+ "early_blight": 2,
14
+ "late_blight": 3
15
+ },
16
+ "model_name": "convnext_tiny_in22k",
17
+ "image_size": 256
18
+ }