ai-forever commited on
Commit
29826c6
1 Parent(s): 53a6a2b

Upload unet/config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. unet/config.json +18 -0
unet/config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DConditionModel",
3
+ "_diffusers_version": "0.17.0.dev0",
4
+ "model_channels": 384,
5
+ "num_channels": 4,
6
+ "init_channels": 192,
7
+ "time_embed_dim": 1536,
8
+ "context_dim": 4096,
9
+ "model_dim": 4096,
10
+ "groups": 32,
11
+ "head_dim": 64,
12
+ "expansion_ratio": 4,
13
+ "compression_ratio": 2,
14
+ "dim_mult": [1, 2, 4, 8],
15
+ "num_blocks": [3, 3, 3, 3],
16
+ "add_cross_attention": [false, true, true, true],
17
+ "add_self_attention": [false, true, true, true]
18
+ }