Commit
·
3aef1fa
1
Parent(s):
77766c3
up
Browse files- config.json +22 -0
- diffusion_model.pt +3 -0
- 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:3a064803caabde8eb5ad2e5aa7e8967b9458de3486c7b6a126770f19dbe7a954
|
| 3 |
+
size 454849341
|
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 |
+
}
|