hsuwill000 commited on
Commit
d01dbbb
1 Parent(s): c407ac3

Upload unet/config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. unet/config.json +55 -0
unet/config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DConditionModel",
3
+ "_diffusers_version": "0.15.0",
4
+ "_name_or_path": "/ssd2/bkkim/sdm_paper_checkpoints/BK-SDM-Tiny/checkpoint-50000",
5
+ "act_fn": "silu",
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 320,
9
+ 640,
10
+ 1280
11
+ ],
12
+ "center_input_sample": false,
13
+ "class_embed_type": null,
14
+ "class_embeddings_concat": false,
15
+ "conv_in_kernel": 3,
16
+ "conv_out_kernel": 3,
17
+ "cross_attention_dim": 768,
18
+ "cross_attention_norm": null,
19
+ "down_block_types": [
20
+ "CrossAttnDownBlock2D",
21
+ "CrossAttnDownBlock2D",
22
+ "CrossAttnDownBlock2D"
23
+ ],
24
+ "downsample_padding": 1,
25
+ "dual_cross_attention": false,
26
+ "encoder_hid_dim": null,
27
+ "flip_sin_to_cos": true,
28
+ "freq_shift": 0,
29
+ "in_channels": 4,
30
+ "layers_per_block": 1,
31
+ "mid_block_only_cross_attention": null,
32
+ "mid_block_scale_factor": 1,
33
+ "mid_block_type": null,
34
+ "norm_eps": 1e-05,
35
+ "norm_num_groups": 32,
36
+ "num_class_embeds": null,
37
+ "only_cross_attention": false,
38
+ "out_channels": 4,
39
+ "projection_class_embeddings_input_dim": null,
40
+ "resnet_out_scale_factor": 1.0,
41
+ "resnet_skip_time_act": false,
42
+ "resnet_time_scale_shift": "default",
43
+ "sample_size": 64,
44
+ "time_cond_proj_dim": null,
45
+ "time_embedding_act_fn": null,
46
+ "time_embedding_type": "positional",
47
+ "timestep_post_act": null,
48
+ "up_block_types": [
49
+ "CrossAttnUpBlock2D",
50
+ "CrossAttnUpBlock2D",
51
+ "CrossAttnUpBlock2D"
52
+ ],
53
+ "upcast_attention": false,
54
+ "use_linear_projection": false
55
+ }