horshe commited on
Commit
4af7769
·
verified ·
1 Parent(s): dce0fc7

Add rice config

Browse files
Files changed (1) hide show
  1. config.json +26 -0
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "cnn",
3
+ "framework": "tensorflow",
4
+ "model_name": "agrisentry-rice-disease-classifier",
5
+ "task": "image-classification",
6
+ "input_size": [224, 224, 3],
7
+ "num_classes": 4,
8
+ "classes": [
9
+ "healthy",
10
+ "bacterial_leaf_blight",
11
+ "brown_spot",
12
+ "leaf_blast"
13
+ ],
14
+ "architecture": "CNN",
15
+ "training_framework": "tensorflow_keras",
16
+ "image_processor": {
17
+ "type": "image_classification",
18
+ "size": 224,
19
+ "do_center_crop": true,
20
+ "do_resize": true,
21
+ "resample": "bilinear",
22
+ "do_normalize": true,
23
+ "image_mean": [0.485, 0.456, 0.406],
24
+ "image_std": [0.229, 0.224, 0.225]
25
+ }
26
+ }