patrickvonplaten commited on
Commit
e0fdead
1 Parent(s): 5f8f380
Files changed (4) hide show
  1. config.json +22 -0
  2. diffusion_model.pt +3 -0
  3. model_index.json +11 -0
  4. scheduler_config.json +8 -0
config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNetModel",
3
+ "attn_resolutions": [
4
+ 16
5
+ ],
6
+ "ch": 128,
7
+ "ch_mult": [
8
+ 1,
9
+ 1,
10
+ 2,
11
+ 2,
12
+ 4,
13
+ 4
14
+ ],
15
+ "dropout": 0.0,
16
+ "in_channels": 3,
17
+ "name_or_path": "./ddpm-lsun-church/",
18
+ "num_res_blocks": 2,
19
+ "out_ch": 3,
20
+ "resamp_with_conv": true,
21
+ "resolution": 256
22
+ }
diffusion_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f24368dc2d36d7c08277d76654458ea3ca24b260bbbf48307fc745ea09112bb7
3
+ size 454849341
model_index.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "DDPM",
3
+ "noise_scheduler": [
4
+ "diffusers",
5
+ "GaussianDDPMScheduler"
6
+ ],
7
+ "unet": [
8
+ "diffusers",
9
+ "UNetModel"
10
+ ]
11
+ }
scheduler_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "GaussianDDPMScheduler",
3
+ "beta_end": 0.02,
4
+ "beta_schedule": "linear",
5
+ "beta_start": 0.0001,
6
+ "timesteps": 1000,
7
+ "variance_type": "fixed_small"
8
+ }