Commit ·
fdce8d4
1
Parent(s): ce26885
uP
Browse files- model/config.json +43 -0
- model/diffusion_model.pt +3 -0
- model_index.json +12 -0
- scheduler/scheduler_config.json +7 -0
- scheduler_config.json +7 -0
model/config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "NCSNpp",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"attention_type": "ddpm",
|
| 5 |
+
"attn_resolutions": [
|
| 6 |
+
16
|
| 7 |
+
],
|
| 8 |
+
"centered": true,
|
| 9 |
+
"ch_mult": [
|
| 10 |
+
1,
|
| 11 |
+
2,
|
| 12 |
+
2,
|
| 13 |
+
2
|
| 14 |
+
],
|
| 15 |
+
"conditional": true,
|
| 16 |
+
"continuous": true,
|
| 17 |
+
"conv_size": 3,
|
| 18 |
+
"dropout": 0.0,
|
| 19 |
+
"embedding_type": "positional",
|
| 20 |
+
"fir": false,
|
| 21 |
+
"fir_kernel": [
|
| 22 |
+
1,
|
| 23 |
+
3,
|
| 24 |
+
3,
|
| 25 |
+
1
|
| 26 |
+
],
|
| 27 |
+
"fourier_scale": 16,
|
| 28 |
+
"image_size": 32,
|
| 29 |
+
"init_scale": 0.0,
|
| 30 |
+
"name_or_path": "/home/patrick/cifar10-ddpmpp-vp",
|
| 31 |
+
"nf": 128,
|
| 32 |
+
"nonlinearity": "swish",
|
| 33 |
+
"normalization": "GroupNorm",
|
| 34 |
+
"num_channels": 3,
|
| 35 |
+
"num_res_blocks": 4,
|
| 36 |
+
"progressive": "none",
|
| 37 |
+
"progressive_combine": "sum",
|
| 38 |
+
"progressive_input": "none",
|
| 39 |
+
"resamp_with_conv": true,
|
| 40 |
+
"resblock_type": "biggan",
|
| 41 |
+
"scale_by_sigma": false,
|
| 42 |
+
"skip_rescale": true
|
| 43 |
+
}
|
model/diffusion_model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2512f06df07a7f5a29193f9621036bd6bdc1a11f870e5b03920a082641b42c86
|
| 3 |
+
size 247408983
|
model_index.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "ScoreSdeVpPipeline",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"model": [
|
| 5 |
+
"diffusers",
|
| 6 |
+
"NCSNpp"
|
| 7 |
+
],
|
| 8 |
+
"scheduler": [
|
| 9 |
+
"diffusers",
|
| 10 |
+
"ScoreSdeVpScheduler"
|
| 11 |
+
]
|
| 12 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "ScoreSdeVpScheduler",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"beta_max": 20,
|
| 5 |
+
"beta_min": 0.1,
|
| 6 |
+
"sampling_eps": 0.001
|
| 7 |
+
}
|
scheduler_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "ScoreSdeVpScheduler",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"beta_max": 20,
|
| 5 |
+
"beta_min": 0.1,
|
| 6 |
+
"sampling_eps": 0.001
|
| 7 |
+
}
|