prateekrao commited on
Commit
2bfc49d
1 Parent(s): 9de3251

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +36 -0
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.0.4",
4
+ "act_fn": "silu",
5
+ "attention_head_dim": null,
6
+ "block_out_channels": [
7
+ 128,
8
+ 256,
9
+ 256,
10
+ 256
11
+ ],
12
+ "center_input_sample": false,
13
+ "down_block_types": [
14
+ "DownBlock2D",
15
+ "AttnDownBlock2D",
16
+ "DownBlock2D",
17
+ "DownBlock2D"
18
+ ],
19
+ "downsample_padding": 0,
20
+ "flip_sin_to_cos": false,
21
+ "freq_shift": 1,
22
+ "in_channels": 3,
23
+ "layers_per_block": 2,
24
+ "mid_block_scale_factor": 1,
25
+ "norm_eps": 1e-06,
26
+ "norm_num_groups": 32,
27
+ "out_channels": 3,
28
+ "sample_size": 32,
29
+ "time_embedding_type": "positional",
30
+ "up_block_types": [
31
+ "UpBlock2D",
32
+ "UpBlock2D",
33
+ "AttnUpBlock2D",
34
+ "UpBlock2D"
35
+ ]
36
+ }