hf-transformers-bot commited on
Commit
02f6702
·
verified ·
1 Parent(s): 28905a3

Update tiny models for MobileNetV2ForSemanticSegmentation

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