Factral commited on
Commit
01f0f5b
·
verified ·
1 Parent(s): 9c0dc16

Upload 5 files

Browse files
config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "num_labels": 6,
3
+ "id2label": {
4
+ "0": "fermentado",
5
+ "1": "hongo",
6
+ "2": "insecto",
7
+ "3": "insufi_fermen",
8
+ "4": "pizarroso",
9
+ "5": "violeta"
10
+ },
11
+ "label2id": {
12
+ "fermentado": 0,
13
+ "hongo": 1,
14
+ "insecto": 2,
15
+ "insufi_fermen": 3,
16
+ "pizarroso": 4,
17
+ "violeta": 5
18
+ },
19
+ "model_type": "resnet",
20
+ "num_channels": 3,
21
+ "transformers_version": "4.42.4"
22
+ }
onnx/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dee785c94e8b330653fcfd9dade47dacedc9823413f3eb579d7fa28af155ecdc
3
+ size 93999433
onnx/model_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d3c419e4700aab3a2e5a45d40d0a05d3148b623bac43467881576b8a619427f
3
+ size 23684712
preprocessor_config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "do_resize": true,
4
+ "image_mean": [
5
+ 0.485,
6
+ 0.456,
7
+ 0.406
8
+ ],
9
+ "image_std": [
10
+ 0.229,
11
+ 0.224,
12
+ 0.225
13
+ ],
14
+ "size": {
15
+ "height": 224,
16
+ "width": 224
17
+ }
18
+ }
quantize_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "per_model_config": {
3
+ "model": {
4
+ "op_types": [
5
+ "Relu",
6
+ "Gemm",
7
+ "Conv",
8
+ "Add",
9
+ "GlobalAveragePool",
10
+ "MaxPool",
11
+ "Flatten"
12
+ ],
13
+ "weight_type": "QUInt8"
14
+ }
15
+ }
16
+ }