xutongda commited on
Commit
3baab3f
1 Parent(s): ae33da9

Upload 4 files

Browse files
config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.0.4",
4
+ "act_fn": "silu",
5
+ "sample_size": 256,
6
+ "in_channels": 3,
7
+ "out_channels": 6,
8
+ "layers_per_block": 2,
9
+ "block_out_channels": [
10
+ 256,
11
+ 256,
12
+ 512,
13
+ 512,
14
+ 1024,
15
+ 1024
16
+ ],
17
+ "attention_head_dim": 64,
18
+ "attention_legacy_order": true,
19
+ "down_block_types": [
20
+ "ResnetDownsampleBlock2D",
21
+ "ResnetDownsampleBlock2D",
22
+ "ResnetDownsampleBlock2D",
23
+ "AttnDownBlock2D",
24
+ "AttnDownBlock2D",
25
+ "AttnDownBlock2D"
26
+ ],
27
+ "up_block_types": [
28
+ "AttnUpBlock2D",
29
+ "AttnUpBlock2D",
30
+ "AttnUpBlock2D",
31
+ "ResnetUpsampleBlock2D",
32
+ "ResnetUpsampleBlock2D",
33
+ "ResnetUpsampleBlock2D"
34
+ ],
35
+ "resnet_time_scale_shift": "scale_shift",
36
+ "upsample_type": "resnet",
37
+ "downsample_type": "resnet",
38
+ "norm_eps": 1e-06,
39
+ "norm_num_groups": 32,
40
+ "time_embedding_type": "adm"
41
+ }
diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9b53217507843185fe859978e9b66eb44f4fb91fb6f0d255ae6acfb80473cb4
3
+ size 2211331254
model_index.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "DDPMPipeline",
3
+ "scheduler": [
4
+ "diffusers",
5
+ "DDPMScheduler"
6
+ ],
7
+ "unet": [
8
+ "diffusers",
9
+ "UNet2DModel"
10
+ ]
11
+ }
scheduler_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "DDPMScheduler",
3
+ "_diffusers_version": "0.1.1",
4
+ "beta_end": 0.02,
5
+ "beta_schedule": "linear",
6
+ "beta_start": 0.0001,
7
+ "clip_sample": true,
8
+ "num_train_timesteps": 1000,
9
+ "trained_betas": null,
10
+ "variance_type": "learned_range"
11
+ }