hf-transformers-bot commited on
Commit
baa9bf0
·
verified ·
1 Parent(s): 540ad8b

Update tiny models for MobileNetV1ForImageClassification

Browse files
Files changed (3) hide show
  1. config.json +17 -0
  2. model.safetensors +3 -0
  3. preprocessor_config.json +27 -0
config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "MobileNetV1ForImageClassification"
4
+ ],
5
+ "classifier_dropout_prob": 0.1,
6
+ "depth_multiplier": 0.25,
7
+ "dtype": "float32",
8
+ "hidden_act": "relu6",
9
+ "image_size": 32,
10
+ "initializer_range": 0.02,
11
+ "layer_norm_eps": 0.001,
12
+ "min_depth": 8,
13
+ "model_type": "mobilenet_v1",
14
+ "num_channels": 3,
15
+ "tf_padding": true,
16
+ "transformers_version": "5.16.0.dev0"
17
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:180072f2f2c9dc89f8a16f990393ffa294e70e480cb1f9b677828ec558ef7271
3
+ size 894040
preprocessor_config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "longest_edge": 32,
4
+ "shortest_edge": 32
5
+ },
6
+ "do_center_crop": true,
7
+ "do_normalize": true,
8
+ "do_rescale": true,
9
+ "do_resize": true,
10
+ "image_mean": [
11
+ 0.5,
12
+ 0.5,
13
+ 0.5
14
+ ],
15
+ "image_processor_type": "MobileNetV1ImageProcessor",
16
+ "image_std": [
17
+ 0.5,
18
+ 0.5,
19
+ 0.5
20
+ ],
21
+ "resample": 2,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 32,
25
+ "shortest_edge": 32
26
+ }
27
+ }