patrickvonplaten commited on
Commit
09e08ee
1 Parent(s): 90274f4

Update test_unet/config.json

Browse files
Files changed (1) hide show
  1. test_unet/config.json +4 -2
test_unet/config.json CHANGED
@@ -12,7 +12,7 @@
12
  "class_embed_type": null,
13
  "down_block_types": [
14
  "ResnetDownsampleBlock2D",
15
- "AttnDownsampleBlock2D"
16
  ],
17
  "downsample_padding": 1,
18
  "flip_sin_to_cos": true,
@@ -27,8 +27,10 @@
27
  "resnet_time_scale_shift": "scale_shift",
28
  "sample_size": 32,
29
  "time_embedding_type": "positional",
 
 
30
  "up_block_types": [
31
- "AttnUpsampleBlock2D",
32
  "ResnetUpsampleBlock2D"
33
  ]
34
  }
 
12
  "class_embed_type": null,
13
  "down_block_types": [
14
  "ResnetDownsampleBlock2D",
15
+ "AttnDownBlock2D"
16
  ],
17
  "downsample_padding": 1,
18
  "flip_sin_to_cos": true,
 
27
  "resnet_time_scale_shift": "scale_shift",
28
  "sample_size": 32,
29
  "time_embedding_type": "positional",
30
+ "upsample_type": "resnet",
31
+ "downsample_type": "resnet",
32
  "up_block_types": [
33
+ "AttnUpBlock2D",
34
  "ResnetUpsampleBlock2D"
35
  ]
36
  }