rjeeva commited on
Commit
941339a
·
verified ·
1 Parent(s): a951826

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +5 -0
  2. model.onnx +3 -0
  3. preprocessor_config.json +18 -0
config.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "model_type": "efficientnet",
3
+ "image_size": 224,
4
+ "num_channels": 3
5
+ }
model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2204041881a9d4f87875253bcf2cb1e034fa2e1b6ecfb1089c09de2c6a5a558e
3
+ size 16002549
preprocessor_config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_resize": true,
3
+ "size": 224,
4
+ "resample": "bilinear",
5
+ "do_center_crop": true,
6
+ "crop_size": 224,
7
+ "do_normalize": true,
8
+ "image_mean": [
9
+ 0.485,
10
+ 0.456,
11
+ 0.406
12
+ ],
13
+ "image_std": [
14
+ 0.229,
15
+ 0.224,
16
+ 0.225
17
+ ]
18
+ }