patrickvonplaten commited on
Commit
638304a
1 Parent(s): 9093b94
Files changed (3) hide show
  1. config.json +20 -0
  2. diffusion_model.pt +3 -0
  3. scheduler_config.json +8 -0
config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNetModel",
3
+ "attn_resolutions": [
4
+ 16
5
+ ],
6
+ "ch": 128,
7
+ "ch_mult": [
8
+ 1,
9
+ 2,
10
+ 2,
11
+ 2
12
+ ],
13
+ "dropout": 0.1,
14
+ "in_channels": 3,
15
+ "name_or_path": "./ddpm-cifar10/",
16
+ "num_res_blocks": 2,
17
+ "out_ch": 3,
18
+ "resamp_with_conv": true,
19
+ "resolution": 32
20
+ }
diffusion_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:344610796b6d932acb6f5a259b768feff12342138a78d8be3c15a1e9419852cb
3
+ size 143094129
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
+ }