nroggendorff commited on
Commit
557a514
1 Parent(s): dd76466

Update unet/config.json

Browse files
Files changed (1) hide show
  1. unet/config.json +9 -0
unet/config.json CHANGED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_size": 128,
3
+ "in_channels": 3,
4
+ "out_channels": 3,
5
+ "layers_per_block": 2,
6
+ "block_out_channels": [128, 128, 256, 256, 512, 512],
7
+ "down_block_types": ["DownBlock2D", "DownBlock2D", "DownBlock2D", "DownBlock2D", "AttnDownBlock2D", "DownBlock2D"],
8
+ "up_block_types": ["UpBlock2D", "AttnUpBlock2D", "UpBlock2D", "UpBlock2D", "UpBlock2D", "UpBlock2D"]
9
+ }