Xenova HF Staff commited on
Commit
e0dca96
·
verified ·
1 Parent(s): 3b6c6c6

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +46 -0
  2. onnx/model.onnx +3 -0
  3. preprocessor_config.json +16 -0
config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_attn_implementation_autoset": true,
3
+ "_name_or_path": "hf-internal-testing/tiny-random-MobileViTModel",
4
+ "architectures": [
5
+ "MobileViTModel"
6
+ ],
7
+ "aspp_dropout_prob": 0.1,
8
+ "aspp_out_channels": 256,
9
+ "atrous_rates": [
10
+ 6,
11
+ 12,
12
+ 18
13
+ ],
14
+ "attention_probs_dropout_prob": 0.1,
15
+ "classifier_dropout_prob": 0.1,
16
+ "conv_kernel_size": 3,
17
+ "expand_ratio": 4.0,
18
+ "hidden_act": "silu",
19
+ "hidden_dropout_prob": 0.1,
20
+ "hidden_sizes": [
21
+ 144,
22
+ 192,
23
+ 240
24
+ ],
25
+ "image_size": 32,
26
+ "initializer_range": 0.02,
27
+ "layer_norm_eps": 1e-05,
28
+ "mlp_ratio": 2.0,
29
+ "model_type": "mobilevit",
30
+ "neck_hidden_sizes": [
31
+ 16,
32
+ 32,
33
+ 64,
34
+ 96,
35
+ 128,
36
+ 160,
37
+ 640
38
+ ],
39
+ "num_attention_heads": 4,
40
+ "num_channels": 3,
41
+ "output_stride": 32,
42
+ "patch_size": 2,
43
+ "qkv_bias": true,
44
+ "semantic_loss_ignore_index": 255,
45
+ "transformers_version": "4.48.2"
46
+ }
onnx/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89ea6aec2f6b74fc5baa8c1bcae763b6cebddfceaba4440c5e45c72ed4d9cfc1
3
+ size 19935774
preprocessor_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 32,
4
+ "width": 32
5
+ },
6
+ "do_center_crop": true,
7
+ "do_flip_channel_order": true,
8
+ "do_rescale": true,
9
+ "do_resize": true,
10
+ "image_processor_type": "MobileViTFeatureExtractor",
11
+ "resample": 2,
12
+ "rescale_factor": 0.00392156862745098,
13
+ "size": {
14
+ "shortest_edge": 32
15
+ }
16
+ }