JackIsNotInTheBox commited on
Commit
11cf474
·
verified ·
1 Parent(s): 24803be

Mirror unet/config.json from cvssp/audioldm2@c8e7e189

Browse files
encoders/cvssp/audioldm2/unet/config.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "AudioLDM2UNet2DConditionModel",
3
+ "_diffusers_version": "0.20.0.dev0",
4
+ "act_fn": "silu",
5
+ "attention_head_dim": 8,
6
+ "block_out_channels": [
7
+ 128,
8
+ 256,
9
+ 384,
10
+ 640
11
+ ],
12
+ "class_embed_type": null,
13
+ "class_embeddings_concat": false,
14
+ "conv_in_kernel": 3,
15
+ "conv_out_kernel": 3,
16
+ "cross_attention_dim": [
17
+ [
18
+ null,
19
+ 768,
20
+ 1024
21
+ ],
22
+ [
23
+ null,
24
+ 768,
25
+ 1024
26
+ ],
27
+ [
28
+ null,
29
+ 768,
30
+ 1024
31
+ ],
32
+ [
33
+ null,
34
+ 768,
35
+ 1024
36
+ ]
37
+ ],
38
+ "down_block_types": [
39
+ "DownBlock2D",
40
+ "CrossAttnDownBlock2D",
41
+ "CrossAttnDownBlock2D",
42
+ "CrossAttnDownBlock2D"
43
+ ],
44
+ "downsample_padding": 1,
45
+ "flip_sin_to_cos": true,
46
+ "freq_shift": 0,
47
+ "in_channels": 8,
48
+ "layers_per_block": 2,
49
+ "mid_block_scale_factor": 1,
50
+ "mid_block_type": "UNetMidBlock2DCrossAttn",
51
+ "norm_eps": 1e-05,
52
+ "norm_num_groups": 32,
53
+ "num_attention_heads": null,
54
+ "num_class_embeds": null,
55
+ "only_cross_attention": false,
56
+ "out_channels": 8,
57
+ "projection_class_embeddings_input_dim": null,
58
+ "resnet_time_scale_shift": "default",
59
+ "sample_size": 256,
60
+ "time_cond_proj_dim": null,
61
+ "time_embedding_act_fn": null,
62
+ "time_embedding_dim": null,
63
+ "time_embedding_type": "positional",
64
+ "timestep_post_act": null,
65
+ "transformer_layers_per_block": 1,
66
+ "up_block_types": [
67
+ "CrossAttnUpBlock2D",
68
+ "CrossAttnUpBlock2D",
69
+ "CrossAttnUpBlock2D",
70
+ "UpBlock2D"
71
+ ],
72
+ "upcast_attention": false,
73
+ "use_linear_projection": false
74
+ }