lauluCas commited on
Commit
a7765b5
·
verified ·
1 Parent(s): 09557d2

Upload unet/config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. unet/config.json +28 -0
unet/config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "sample_size": 32,
4
+ "in_channels": 3,
5
+ "out_channels": 3,
6
+ "layers_per_block": 2,
7
+ "block_out_channels": [
8
+ 64,
9
+ 128,
10
+ 128,
11
+ 256
12
+ ],
13
+ "down_block_types": [
14
+ "DownBlock2D",
15
+ "DownBlock2D",
16
+ "AttnDownBlock2D",
17
+ "AttnDownBlock2D"
18
+ ],
19
+ "up_block_types": [
20
+ "AttnUpBlock2D",
21
+ "AttnUpBlock2D",
22
+ "UpBlock2D",
23
+ "UpBlock2D"
24
+ ],
25
+ "act_fn": "silu",
26
+ "attention_head_dim": 8,
27
+ "norm_num_groups": 32
28
+ }