BackTo2014 commited on
Commit
fbbeb65
·
verified ·
1 Parent(s): 9414be5

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +11 -10
config.json CHANGED
@@ -1,14 +1,15 @@
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
- "time_embedding_dim": 512,
13
- "norm_num_groups": 32
 
 
 
 
 
 
 
 
14
  }
 
1
  {
2
+ "sample_size": 32,
 
 
 
 
 
 
 
3
  "in_channels": 3,
4
  "out_channels": 3,
5
+ "layers_per_block": 2,
6
+ "block_out_channels": [128, 256, 384, 512],
7
+ "down_block_types": ["DownBlock2D", "AttnDownBlock2D", "DownBlock2D", "DownBlock2D"],
8
+ "up_block_types": ["UpBlock2D", "UpBlock2D", "AttnUpBlock2D", "UpBlock2D"],
9
+ "mid_block_scale_factor": 1,
10
+ "act_fn": "silu",
11
+ "attention_head_dim": 8,
12
+ "norm_num_groups": 32,
13
+ "norm_eps": 1e-5,
14
+ "resnet_time_scale_shift": "default"
15
  }