shauray commited on
Commit
548d46c
1 Parent(s): a4c7fec

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +34 -16
config.json CHANGED
@@ -1,22 +1,40 @@
1
  {
2
- "_name_or_path": "shauray/ViTPose",
3
  "architectures": [
4
- "ViTPoseForImageClassification"
5
  ],
6
- "img_size": [256, 192],
7
- "patch_size": 16,
8
- "embed_dim": 384,
9
  "depth": 12,
10
- "num_heads": 12,
11
- "ratio": 1,
12
- "use_checkpoint": false,
13
- "mlp_ratio": 4,
14
- "qkv_bias": true,
15
  "drop_path_rate": 0.1,
16
- "keypoint_in_channels": 382,
17
- "keypoint_num_deconv_layers": 2,
18
- "keypoint_num_deconv_filters": [256, 256],
19
- "keypoint_num_deconv_kernels": [4, 4],
20
  "dropout_p": 0.0,
21
- "num_output_channels": 17
22
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
 
2
  "architectures": [
3
+ "ViTPoseForPoseEstimation"
4
  ],
 
 
 
5
  "depth": 12,
 
 
 
 
 
6
  "drop_path_rate": 0.1,
 
 
 
 
7
  "dropout_p": 0.0,
8
+ "embed_dim": 384,
9
+ "flip_test": false,
10
+ "img_size": [
11
+ 256,
12
+ 192
13
+ ],
14
+ "initializer_range": 1,
15
+ "kernel": 3,
16
+ "keypoint_in_channels": 382,
17
+ "keypoint_num_deconv_filters": [
18
+ 256,
19
+ 256
20
+ ],
21
+ "keypoint_num_deconv_kernels": [
22
+ 4,
23
+ 4
24
+ ],
25
+ "keypoint_num_deconv_layer": 2,
26
+ "mlp_ratio": 4,
27
+ "model_type": "vitpose",
28
+ "num_attention_heads": 12,
29
+ "num_channels": 3,
30
+ "num_joints": 17,
31
+ "num_output_channels": 17,
32
+ "patch_size": 16,
33
+ "qkv_bias": true,
34
+ "ratio": 1,
35
+ "target_type": "GaussianHeatMap",
36
+ "torch_dtype": "float32",
37
+ "transformers_version": "4.32.0.dev0",
38
+ "udp": true,
39
+ "use_checkpoint": false
40
+ }