fokhrul006 commited on
Commit
f0797df
1 Parent(s): 0b8427d

init files

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:93dc243ce8c128384bebf3fd0042e769113551a5db5bbe1ffb2511fb6f57a3e9
3
+ size 335709858
class_mapping.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "0": "anthracnose",
3
+ "1": "dieback",
4
+ "2": "malformation",
5
+ "3": "mealybug"
6
+ }
config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_name": "Mango",
3
+ "num_classes": 4,
4
+ "class_names": [
5
+ "anthracnose",
6
+ "dieback",
7
+ "malformation",
8
+ "mealybug"
9
+ ],
10
+ "class_to_idx": {
11
+ "anthracnose": 0,
12
+ "dieback": 1,
13
+ "malformation": 2,
14
+ "mealybug": 3
15
+ },
16
+ "model_name": "convnext_tiny_in22k",
17
+ "image_size": 256
18
+ }