giulio98 commited on
Commit
2af465d
·
verified ·
1 Parent(s): fe0697e

Create config.json

Browse files
Files changed (1) hide show
  1. unet/config.json +50 -0
unet/config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.27.2",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": null,
7
+ "attn_norm_num_groups": null,
8
+ "block_out_channels": [
9
+ 32,
10
+ 64,
11
+ 64
12
+ ],
13
+ "center_input_sample": true,
14
+ "class_embed_type": null,
15
+ "decay": 0.9999,
16
+ "down_block_types": [
17
+ "DownBlock2D",
18
+ "AttnDownBlock2D",
19
+ "AttnDownBlock2D"
20
+ ],
21
+ "downsample_padding": 1,
22
+ "downsample_type": "conv",
23
+ "dropout": 0.0,
24
+ "flip_sin_to_cos": true,
25
+ "freq_shift": 0,
26
+ "in_channels": 1,
27
+ "inv_gamma": 1.0,
28
+ "layers_per_block": 2,
29
+ "mid_block_scale_factor": 1.41421356237,
30
+ "min_decay": 0.0,
31
+ "norm_eps": 1e-06,
32
+ "norm_num_groups": 32,
33
+ "num_class_embeds": 11,
34
+ "num_train_timesteps": null,
35
+ "optimization_step": 100000,
36
+ "out_channels": 1,
37
+ "power": 0.75,
38
+ "resnet_time_scale_shift": "default",
39
+ "sample_size": 32,
40
+ "set_W_to_weight": false,
41
+ "time_embedding_type": "fourier",
42
+ "up_block_types": [
43
+ "AttnUpBlock2D",
44
+ "AttnUpBlock2D",
45
+ "UpBlock2D"
46
+ ],
47
+ "update_after_step": 0,
48
+ "upsample_type": "conv",
49
+ "use_ema_warmup": true
50
+ }