hf-transformers-bot commited on
Commit
ad59b8e
·
verified ·
1 Parent(s): 3538dc2

Update tiny models for Data2VecVisionModel

Browse files
Files changed (3) hide show
  1. config.json +47 -0
  2. model.safetensors +3 -0
  3. preprocessor_config.json +28 -0
config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Data2VecVisionModel"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "auxiliary_channels": 256,
7
+ "auxiliary_concat_input": false,
8
+ "auxiliary_loss_weight": 0.4,
9
+ "auxiliary_num_convs": 1,
10
+ "drop_path_rate": 0.1,
11
+ "dtype": "float32",
12
+ "hidden_act": "gelu",
13
+ "hidden_dropout_prob": 0.1,
14
+ "hidden_size": 32,
15
+ "image_size": 30,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 37,
18
+ "is_decoder": false,
19
+ "layer_norm_eps": 1e-12,
20
+ "layer_scale_init_value": 0.1,
21
+ "model_type": "data2vec-vision",
22
+ "num_attention_heads": 4,
23
+ "num_channels": 3,
24
+ "num_hidden_layers": 2,
25
+ "out_indices": [
26
+ 0,
27
+ 1,
28
+ 2,
29
+ 3
30
+ ],
31
+ "patch_size": 2,
32
+ "pool_scales": [
33
+ 1,
34
+ 2,
35
+ 3,
36
+ 6
37
+ ],
38
+ "semantic_loss_ignore_index": 255,
39
+ "transformers_version": "5.16.0.dev0",
40
+ "use_absolute_position_embeddings": false,
41
+ "use_auxiliary_head": true,
42
+ "use_mask_token": false,
43
+ "use_mean_pooling": true,
44
+ "use_relative_position_bias": false,
45
+ "use_shared_relative_position_bias": false,
46
+ "vocab_size": 100
47
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f5cb5483aaba44764434371bc0b4770e74078b259df7c4480d725bd98578180
3
+ size 60136
preprocessor_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 30,
4
+ "width": 30
5
+ },
6
+ "do_center_crop": false,
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": "BeitImageProcessor",
17
+ "image_std": [
18
+ 0.5,
19
+ 0.5,
20
+ 0.5
21
+ ],
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "height": 30,
26
+ "width": 30
27
+ }
28
+ }