Upload 4 files
Browse files- config.json +41 -0
- diffusion_pytorch_model.bin +3 -0
- model_index.json +11 -0
- scheduler_config.json +11 -0
config.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "UNet2DModel",
|
3 |
+
"_diffusers_version": "0.0.4",
|
4 |
+
"act_fn": "silu",
|
5 |
+
"sample_size": 256,
|
6 |
+
"in_channels": 3,
|
7 |
+
"out_channels": 6,
|
8 |
+
"layers_per_block": 2,
|
9 |
+
"block_out_channels": [
|
10 |
+
256,
|
11 |
+
256,
|
12 |
+
512,
|
13 |
+
512,
|
14 |
+
1024,
|
15 |
+
1024
|
16 |
+
],
|
17 |
+
"attention_head_dim": 64,
|
18 |
+
"attention_legacy_order": true,
|
19 |
+
"down_block_types": [
|
20 |
+
"ResnetDownsampleBlock2D",
|
21 |
+
"ResnetDownsampleBlock2D",
|
22 |
+
"ResnetDownsampleBlock2D",
|
23 |
+
"AttnDownBlock2D",
|
24 |
+
"AttnDownBlock2D",
|
25 |
+
"AttnDownBlock2D"
|
26 |
+
],
|
27 |
+
"up_block_types": [
|
28 |
+
"AttnUpBlock2D",
|
29 |
+
"AttnUpBlock2D",
|
30 |
+
"AttnUpBlock2D",
|
31 |
+
"ResnetUpsampleBlock2D",
|
32 |
+
"ResnetUpsampleBlock2D",
|
33 |
+
"ResnetUpsampleBlock2D"
|
34 |
+
],
|
35 |
+
"resnet_time_scale_shift": "scale_shift",
|
36 |
+
"upsample_type": "resnet",
|
37 |
+
"downsample_type": "resnet",
|
38 |
+
"norm_eps": 1e-06,
|
39 |
+
"norm_num_groups": 32,
|
40 |
+
"time_embedding_type": "adm"
|
41 |
+
}
|
diffusion_pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ba30d3818ca7951a412498154392cc85714764ed7fc3a9a413ce3cff53c33b77
|
3 |
+
size 2211331342
|
model_index.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "DDPMPipeline",
|
3 |
+
"scheduler": [
|
4 |
+
"diffusers",
|
5 |
+
"DDPMScheduler"
|
6 |
+
],
|
7 |
+
"unet": [
|
8 |
+
"diffusers",
|
9 |
+
"UNet2DModel"
|
10 |
+
]
|
11 |
+
}
|
scheduler_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "DDPMScheduler",
|
3 |
+
"_diffusers_version": "0.1.1",
|
4 |
+
"beta_end": 0.02,
|
5 |
+
"beta_schedule": "linear",
|
6 |
+
"beta_start": 0.0001,
|
7 |
+
"clip_sample": true,
|
8 |
+
"num_train_timesteps": 1000,
|
9 |
+
"trained_betas": null,
|
10 |
+
"variance_type": "learned_range"
|
11 |
+
}
|