patrickvonplaten commited on
Commit
6bedc16
1 Parent(s): 6687c58

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +13 -1
config.json CHANGED
@@ -3,6 +3,11 @@
3
  "attn_resolutions": [
4
  16
5
  ],
 
 
 
 
 
6
  "ch": 128,
7
  "ch_mult": [
8
  1,
@@ -12,11 +17,18 @@
12
  4,
13
  4
14
  ],
 
 
 
 
15
  "dropout": 0.0,
16
  "in_channels": 3,
17
  "name_or_path": "./ddpm-lsun-church/",
18
  "num_res_blocks": 2,
19
  "out_ch": 3,
 
20
  "resamp_with_conv": true,
21
- "resolution": 256
 
 
22
  }
 
3
  "attn_resolutions": [
4
  16
5
  ],
6
+ "down_blocks": ["UNetResDownBlock2D", "UNetResDownBlock2D", "UNetResDownBlock2D", "UNetResDownBlock2D", "UNetResAttnDownBlock2D", "UNetResDownBlock2D"],
7
+ "up_blocks": ["UNetResUpBlock2D", "UNetResAttnUpBlock2D", "UNetResUpBlock2D", "UNetResUpBlock2D", "UNetResUpBlock2D", "UNetResUpBlock2D"],
8
+ "conv_resample": true,
9
+ "downsample_padding": 0,
10
+ "num_head_channels": null,
11
  "ch": 128,
12
  "ch_mult": [
13
  1,
 
17
  4,
18
  4
19
  ],
20
+ "block_channels": [128, 128, 256, 256, 512, 512],
21
+ "resnet_eps": 1e-6,
22
+ "flip_sin_to_cos": false,
23
+ "downscale_freq_shift": 1,
24
  "dropout": 0.0,
25
  "in_channels": 3,
26
  "name_or_path": "./ddpm-lsun-church/",
27
  "num_res_blocks": 2,
28
  "out_ch": 3,
29
+ "out_channels": 3,
30
  "resamp_with_conv": true,
31
+ "resolution": 256,
32
+ "image_size": 32,
33
+ "ddpm": true
34
  }