patrickvonplaten commited on
Commit
a04ae6d
·
1 Parent(s): bd6c7bc

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +3 -3
config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "_class_name": "UNetModel",
3
- "down_blocks": ["UNetResDownBlock2D", "UNetResAttnDownBlock2D"],
4
- "up_blocks": ["UNetResAttnUpBlock2D", "UNetResUpBlock2D"],
5
  "attn_resolutions": [
6
  16
7
  ],
@@ -9,7 +9,7 @@
9
  "downsample_padding": 0,
10
  "num_head_channels": 64,
11
  "ch": 32,
12
- "block_channels": [32, 64],
13
  "ch_mult": [
14
  1,
15
  2
 
1
  {
2
  "_class_name": "UNetModel",
3
+ "down_block_types": ["DownBlock2D", "AttnDownBlock2D"],
4
+ "up_block_types": ["AttnUpBlock2D", "UpBlock2D"],
5
  "attn_resolutions": [
6
  16
7
  ],
 
9
  "downsample_padding": 0,
10
  "num_head_channels": 64,
11
  "ch": 32,
12
+ "block_out_channels": [32, 64],
13
  "ch_mult": [
14
  1,
15
  2