Commit
·
16aa4b4
1
Parent(s):
5e7b7b4
upload stuff
Browse files- model_index.json +12 -0
- scheduler/scheduler_config.json +12 -0
- unet/config.json +40 -0
- unet/diffusion_model.pt +3 -0
model_index.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "DDPMPipeline",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"scheduler": [
|
| 5 |
+
"diffusers",
|
| 6 |
+
"DDPMScheduler"
|
| 7 |
+
],
|
| 8 |
+
"unet": [
|
| 9 |
+
"diffusers",
|
| 10 |
+
"UNetUnconditionalModel"
|
| 11 |
+
]
|
| 12 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "DDPMScheduler",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"beta_end": 0.02,
|
| 5 |
+
"beta_schedule": "linear",
|
| 6 |
+
"beta_start": 0.0001,
|
| 7 |
+
"clip_sample": true,
|
| 8 |
+
"num_train_timesteps": 1000,
|
| 9 |
+
"timestep_values": null,
|
| 10 |
+
"trained_betas": null,
|
| 11 |
+
"variance_type": "fixed_small"
|
| 12 |
+
}
|
unet/config.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "UNetUnconditionalModel",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"attention_resolutions": [
|
| 5 |
+
8,
|
| 6 |
+
4,
|
| 7 |
+
2
|
| 8 |
+
],
|
| 9 |
+
"attn_resolutions": [
|
| 10 |
+
16
|
| 11 |
+
],
|
| 12 |
+
"block_channels": [
|
| 13 |
+
32,
|
| 14 |
+
64
|
| 15 |
+
],
|
| 16 |
+
"center_input_sample": false,
|
| 17 |
+
"conv_resample": true,
|
| 18 |
+
"down_blocks": [
|
| 19 |
+
"UNetResDownBlock2D",
|
| 20 |
+
"UNetResAttnDownBlock2D"
|
| 21 |
+
],
|
| 22 |
+
"downsample_padding": 0,
|
| 23 |
+
"downscale_freq_shift": 1,
|
| 24 |
+
"dropout": 0.0,
|
| 25 |
+
"flip_sin_to_cos": false,
|
| 26 |
+
"image_size": 32,
|
| 27 |
+
"in_channels": 3,
|
| 28 |
+
"mid_block_scale_factor": 1,
|
| 29 |
+
"num_head_channels": 64,
|
| 30 |
+
"num_res_blocks": 2,
|
| 31 |
+
"out_channels": 3,
|
| 32 |
+
"resnet_eps": 1e-06,
|
| 33 |
+
"resnet_num_groups": 32,
|
| 34 |
+
"sde": false,
|
| 35 |
+
"time_embedding_type": "positional",
|
| 36 |
+
"up_blocks": [
|
| 37 |
+
"UNetResAttnUpBlock2D",
|
| 38 |
+
"UNetResUpBlock2D"
|
| 39 |
+
]
|
| 40 |
+
}
|
unet/diffusion_model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b73a63624520e1882d05068369878c8c2f7ec237e2b9770c34f9b8b5fc5ac051
|
| 3 |
+
size 4085729
|