add model
Browse files- model_index.json +16 -0
- noise_scheduler/scheduler_config.json +11 -0
- unet/config.json +37 -0
- unet/diffusion_model.pt +3 -0
- vqvae/config.json +24 -0
- vqvae/diffusion_model.pt +3 -0
model_index.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "LatentDiffusionUncondPipeline",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"noise_scheduler": [
|
| 5 |
+
"diffusers",
|
| 6 |
+
"DDIMScheduler"
|
| 7 |
+
],
|
| 8 |
+
"unet": [
|
| 9 |
+
"diffusers",
|
| 10 |
+
"UNetLDMModel"
|
| 11 |
+
],
|
| 12 |
+
"vqvae": [
|
| 13 |
+
"latent_diffusion_uncond",
|
| 14 |
+
"VQModel"
|
| 15 |
+
]
|
| 16 |
+
}
|
noise_scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "DDIMScheduler",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"beta_end": 0.0195,
|
| 5 |
+
"beta_schedule": "linear",
|
| 6 |
+
"beta_start": 0.0015,
|
| 7 |
+
"clip_sample": false,
|
| 8 |
+
"timestep_values": null,
|
| 9 |
+
"timesteps": 1000,
|
| 10 |
+
"trained_betas": null
|
| 11 |
+
}
|
unet/config.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "UNetLDMModel",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"attention_resolutions": [
|
| 5 |
+
8,
|
| 6 |
+
4,
|
| 7 |
+
2
|
| 8 |
+
],
|
| 9 |
+
"channel_mult": [
|
| 10 |
+
1,
|
| 11 |
+
2,
|
| 12 |
+
3,
|
| 13 |
+
4
|
| 14 |
+
],
|
| 15 |
+
"context_dim": null,
|
| 16 |
+
"conv_resample": true,
|
| 17 |
+
"dims": 2,
|
| 18 |
+
"dropout": 0,
|
| 19 |
+
"image_size": 64,
|
| 20 |
+
"in_channels": 3,
|
| 21 |
+
"legacy": true,
|
| 22 |
+
"model_channels": 224,
|
| 23 |
+
"n_embed": null,
|
| 24 |
+
"num_classes": null,
|
| 25 |
+
"num_head_channels": 32,
|
| 26 |
+
"num_heads": -1,
|
| 27 |
+
"num_heads_upsample": -1,
|
| 28 |
+
"num_res_blocks": 2,
|
| 29 |
+
"out_channels": 3,
|
| 30 |
+
"resblock_updown": false,
|
| 31 |
+
"transformer_depth": 1,
|
| 32 |
+
"use_checkpoint": false,
|
| 33 |
+
"use_fp16": false,
|
| 34 |
+
"use_new_attention_order": false,
|
| 35 |
+
"use_scale_shift_norm": false,
|
| 36 |
+
"use_spatial_transformer": false
|
| 37 |
+
}
|
unet/diffusion_model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1545a19e84865233d947cf726a995565b40eb4fdcc9227af6cad9e79d9fc704
|
| 3 |
+
size 1096367073
|
vqvae/config.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "VQModel",
|
| 3 |
+
"_diffusers_version": "0.0.4",
|
| 4 |
+
"attn_resolutions": [],
|
| 5 |
+
"ch": 128,
|
| 6 |
+
"ch_mult": [
|
| 7 |
+
1,
|
| 8 |
+
2,
|
| 9 |
+
4
|
| 10 |
+
],
|
| 11 |
+
"double_z": false,
|
| 12 |
+
"dropout": 0.0,
|
| 13 |
+
"embed_dim": 3,
|
| 14 |
+
"give_pre_end": false,
|
| 15 |
+
"in_channels": 3,
|
| 16 |
+
"n_embed": 8192,
|
| 17 |
+
"num_res_blocks": 2,
|
| 18 |
+
"out_ch": 3,
|
| 19 |
+
"remap": null,
|
| 20 |
+
"resamp_with_conv": true,
|
| 21 |
+
"resolution": 256,
|
| 22 |
+
"sane_index_shape": false,
|
| 23 |
+
"z_channels": 3
|
| 24 |
+
}
|
vqvae/diffusion_model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e383b55bf3faeffafffb49286ae11c41611557c6c2b0dfbf09a0d3ea94590ae8
|
| 3 |
+
size 221364711
|