fawazahmed0 commited on
Commit
1e9815a
1 Parent(s): fc3e8b9

Upload 2 files

Browse files
Files changed (2) hide show
  1. config.json +41 -42
  2. quantize_config.json +17 -0
config.json CHANGED
@@ -1,42 +1,41 @@
1
- {
2
- "model_type":"mobilenet_v2",
3
- "architecture": "mobilenetv4_conv_small_050",
4
- "num_classes": 1000,
5
- "num_features": 480,
6
- "pretrained_cfg": {
7
- "tag": "e3000_r224_in1k",
8
- "custom_load": false,
9
- "input_size": [
10
- 3,
11
- 224,
12
- 224
13
- ],
14
- "test_input_size": [
15
- 3,
16
- 256,
17
- 256
18
- ],
19
- "fixed_input_size": false,
20
- "interpolation": "bicubic",
21
- "crop_pct": 0.875,
22
- "test_crop_pct": 0.95,
23
- "crop_mode": "center",
24
- "mean": [
25
- 0.5,
26
- 0.5,
27
- 0.5
28
- ],
29
- "std": [
30
- 0.5,
31
- 0.5,
32
- 0.5
33
- ],
34
- "num_classes": 1000,
35
- "pool_size": [
36
- 7,
37
- 7
38
- ],
39
- "first_conv": "conv_stem",
40
- "classifier": "classifier"
41
- }
42
- }
 
1
+ {
2
+ "architecture": "mobilenetv4_conv_small_050",
3
+ "classifier": "classifier",
4
+ "crop_mode": "center",
5
+ "crop_pct": 0.875,
6
+ "custom_load": false,
7
+ "export_model_type": "mobilenetv4_conv_small_050",
8
+ "first_conv": "conv_stem",
9
+ "fixed_input_size": false,
10
+ "hf_hub_id": "fawazahmed0/tempmodel",
11
+ "input_size": [
12
+ 3,
13
+ 224,
14
+ 224
15
+ ],
16
+ "interpolation": "bicubic",
17
+ "mean": [
18
+ 0.5,
19
+ 0.5,
20
+ 0.5
21
+ ],
22
+ "num_classes": 1000,
23
+ "pool_size": [
24
+ 7,
25
+ 7
26
+ ],
27
+ "source": "hf-hub",
28
+ "std": [
29
+ 0.5,
30
+ 0.5,
31
+ 0.5
32
+ ],
33
+ "tag": "e3000_r224_in1k",
34
+ "test_crop_pct": 0.95,
35
+ "test_input_size": [
36
+ 3,
37
+ 256,
38
+ 256
39
+ ],
40
+ "transformers_version": "4.45.2"
41
+ }
 
quantize_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "modes": [
3
+ "fp16",
4
+ "q8",
5
+ "int8",
6
+ "uint8",
7
+ "q4",
8
+ "q4f16",
9
+ "bnb4"
10
+ ],
11
+ "per_channel": true,
12
+ "reduce_range": true,
13
+ "block_size": null,
14
+ "is_symmetric": true,
15
+ "accuracy_level": null,
16
+ "quant_type": 1
17
+ }