hf-transformers-bot commited on
Commit
174aa32
·
verified ·
1 Parent(s): ce04380

Update tiny models for VitPoseForPoseEstimation

Browse files
Files changed (3) hide show
  1. config.json +47 -0
  2. model.safetensors +3 -0
  3. preprocessor_config.json +22 -0
config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "VitPoseForPoseEstimation"
4
+ ],
5
+ "backbone_config": {
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.0,
9
+ "hidden_size": 32,
10
+ "image_size": [
11
+ 128,
12
+ 96
13
+ ],
14
+ "initializer_range": 0.02,
15
+ "intermediate_size": 37,
16
+ "layer_norm_eps": 1e-12,
17
+ "mlp_ratio": 4,
18
+ "model_type": "vitpose_backbone",
19
+ "num_attention_heads": 4,
20
+ "num_channels": 3,
21
+ "num_experts": 1,
22
+ "num_hidden_layers": 2,
23
+ "out_features": [
24
+ "stage2"
25
+ ],
26
+ "out_indices": [
27
+ -1
28
+ ],
29
+ "part_features": 256,
30
+ "patch_size": [
31
+ 8,
32
+ 8
33
+ ],
34
+ "qkv_bias": true,
35
+ "stage_names": [
36
+ "stem",
37
+ "stage1",
38
+ "stage2"
39
+ ]
40
+ },
41
+ "dtype": "float32",
42
+ "initializer_range": 0.02,
43
+ "model_type": "vitpose",
44
+ "scale_factor": 4,
45
+ "transformers_version": "5.16.0.dev0",
46
+ "use_simple_decoder": true
47
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2469bb9d01261cac15a26b7d1e9c805d383ebc1bcf6b82db542b2b65d2e9027
3
+ size 157896
preprocessor_config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_affine_transform": true,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "image_mean": [
6
+ 0.485,
7
+ 0.456,
8
+ 0.406
9
+ ],
10
+ "image_processor_type": "VitPoseImageProcessor",
11
+ "image_std": [
12
+ 0.229,
13
+ 0.224,
14
+ 0.225
15
+ ],
16
+ "normalize_factor": 200.0,
17
+ "rescale_factor": 0.00392156862745098,
18
+ "size": {
19
+ "height": 256,
20
+ "width": 192
21
+ }
22
+ }