BackTo2014 commited on
Commit
a24f322
·
verified ·
1 Parent(s): 6e30fbf

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +10 -7
config.json CHANGED
@@ -1,9 +1,12 @@
1
  {
2
- "_class_name": ["UNet2DModel", "DDPMPipeline"],
3
- "T": 1000,
4
- "ch": 128,
5
- "ch_mult": [1, 2, 3, 4],
6
- "attn": [2],
7
- "num_res_blocks": 2,
8
- "dropout": 0.15
 
 
 
9
  }
 
1
  {
2
+ "model_type": "UNet",
3
+ "T": 1000,
4
+ "channel": 128,
5
+ "channel_mult": [1, 2, 3, 4],
6
+ "attn": [2],
7
+ "num_res_blocks": 2,
8
+ "dropout": 0.15,
9
+ "image_size": 32,
10
+ "in_channels": 3,
11
+ "out_channels": 3
12
  }