totoku commited on
Commit
1259513
·
verified ·
1 Parent(s): 8f2de02

Create config.json

Browse files
Files changed (1) hide show
  1. Anima/transformer/config.json +36 -0
Anima/transformer/config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "max_img_h": 1024,
3
+ "max_img_w": 1024,
4
+ "max_frames": 1,
5
+
6
+ "in_channels": 16,
7
+ "out_channels": 16,
8
+ "patch_spatial": 2,
9
+ "patch_temporal": 1,
10
+ "concat_padding_mask": true,
11
+
12
+ "model_channels": 2048,
13
+ "num_blocks": 28,
14
+ "num_heads": 16,
15
+ "mlp_ratio": 4.0,
16
+ "crossattn_emb_channels": 1024,
17
+
18
+ "pos_emb_cls": "rope3d",
19
+ "pos_emb_learnable": false,
20
+ "pos_emb_interpolation": "crop",
21
+ "min_fps": 1,
22
+ "max_fps": 30,
23
+ "rope_enable_fps_modulation": true,
24
+
25
+ "use_adaln_lora": true,
26
+ "adaln_lora_dim": 256,
27
+
28
+ "rope_h_extrapolation_ratio": 1.0,
29
+ "rope_w_extrapolation_ratio": 1.0,
30
+ "rope_t_extrapolation_ratio": 1.0,
31
+
32
+ "extra_per_block_abs_pos_emb": false,
33
+ "extra_h_extrapolation_ratio": 1.0,
34
+ "extra_w_extrapolation_ratio": 1.0,
35
+ "extra_t_extrapolation_ratio": 1.0
36
+ }