cutechicken commited on
Commit
4a8fedc
1 Parent(s): 38f6996

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +10 -0
config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "CausalVideoAutoencoder",
3
+ "dims": [3, 64, 128, 256, 512],
4
+ "blocks": [2, 2, 2, 2],
5
+ "attention_head_dim": 8,
6
+ "num_groups": 32,
7
+ "out_channels": 3,
8
+ "down_block_types": ["DownBlock2D", "DownBlock2D", "DownBlock2D", "DownBlock2D"],
9
+ "up_block_types": ["UpBlock2D", "UpBlock2D", "UpBlock2D", "UpBlock2D"]
10
+ }