Iteration 250000
Browse files- autoencoder/config.json +13 -0
- autoencoder/diffusion_pytorch_model.safetensors +3 -0
- checkpoint.tar +3 -0
- model_index.json +16 -0
- scheduler/scheduler_config.json +19 -0
- unet/config.json +46 -0
- unet/diffusion_pytorch_model.safetensors +3 -0
autoencoder/config.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "ResNetEncoderDecoder",
|
3 |
+
"_diffusers_version": "0.27.2",
|
4 |
+
"_name_or_path": "xkronosx/AutoEncoder-mnist-32",
|
5 |
+
"base_filters": 32,
|
6 |
+
"in_channels": 1,
|
7 |
+
"latent_channels": 1,
|
8 |
+
"latent_size": [
|
9 |
+
16,
|
10 |
+
16
|
11 |
+
],
|
12 |
+
"num_blocks": 2
|
13 |
+
}
|
autoencoder/diffusion_pytorch_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38ec7e82a18cc88581545a4af3809a43e1654eda1a227081a03aa15e79571277
|
3 |
+
size 410260
|
checkpoint.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32e9072348dea317df25eb49431225bb23e2b6b6ef10d14141496823960f0062
|
3 |
+
size 127494582
|
model_index.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "LDMGFNPipeline",
|
3 |
+
"_diffusers_version": "0.27.2",
|
4 |
+
"autoencoder": [
|
5 |
+
"models.EncoderDecoders",
|
6 |
+
"ResNetEncoderDecoder"
|
7 |
+
],
|
8 |
+
"scheduler": [
|
9 |
+
"diffusers",
|
10 |
+
"DDPMScheduler"
|
11 |
+
],
|
12 |
+
"unet": [
|
13 |
+
"diffusers",
|
14 |
+
"UNet2DModel"
|
15 |
+
]
|
16 |
+
}
|
scheduler/scheduler_config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "DDPMScheduler",
|
3 |
+
"_diffusers_version": "0.27.2",
|
4 |
+
"beta_end": 0.0195,
|
5 |
+
"beta_schedule": "scaled_linear",
|
6 |
+
"beta_start": 0.0015,
|
7 |
+
"clip_sample": false,
|
8 |
+
"clip_sample_range": 1.0,
|
9 |
+
"dynamic_thresholding_ratio": 0.995,
|
10 |
+
"num_train_timesteps": 200,
|
11 |
+
"prediction_type": "epsilon",
|
12 |
+
"rescale_betas_zero_snr": false,
|
13 |
+
"sample_max_value": 1.0,
|
14 |
+
"steps_offset": 0,
|
15 |
+
"thresholding": false,
|
16 |
+
"timestep_spacing": "leading",
|
17 |
+
"trained_betas": null,
|
18 |
+
"variance_type": "fixed_large"
|
19 |
+
}
|
unet/config.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "UNet2DModel",
|
3 |
+
"_diffusers_version": "0.27.2",
|
4 |
+
"_name_or_path": "/network/scratch/l/luca.scimeca/gfn_generated_results/train_prior_ldm-mnist-32_0/checkpoints/unet",
|
5 |
+
"act_fn": "silu",
|
6 |
+
"add_attention": true,
|
7 |
+
"attention_head_dim": 8,
|
8 |
+
"attn_norm_num_groups": null,
|
9 |
+
"block_out_channels": [
|
10 |
+
32,
|
11 |
+
64,
|
12 |
+
128,
|
13 |
+
256
|
14 |
+
],
|
15 |
+
"center_input_sample": false,
|
16 |
+
"class_embed_type": null,
|
17 |
+
"down_block_types": [
|
18 |
+
"DownBlock2D",
|
19 |
+
"AttnDownBlock2D",
|
20 |
+
"AttnDownBlock2D",
|
21 |
+
"AttnDownBlock2D"
|
22 |
+
],
|
23 |
+
"downsample_padding": 1,
|
24 |
+
"downsample_type": "conv",
|
25 |
+
"dropout": 0.0,
|
26 |
+
"flip_sin_to_cos": true,
|
27 |
+
"freq_shift": 0,
|
28 |
+
"in_channels": 1,
|
29 |
+
"layers_per_block": 2,
|
30 |
+
"mid_block_scale_factor": 1,
|
31 |
+
"norm_eps": 1e-05,
|
32 |
+
"norm_num_groups": 32,
|
33 |
+
"num_class_embeds": null,
|
34 |
+
"num_train_timesteps": null,
|
35 |
+
"out_channels": 1,
|
36 |
+
"resnet_time_scale_shift": "default",
|
37 |
+
"sample_size": 16,
|
38 |
+
"time_embedding_type": "positional",
|
39 |
+
"up_block_types": [
|
40 |
+
"AttnUpBlock2D",
|
41 |
+
"AttnUpBlock2D",
|
42 |
+
"AttnUpBlock2D",
|
43 |
+
"UpBlock2D"
|
44 |
+
],
|
45 |
+
"upsample_type": "conv"
|
46 |
+
}
|
unet/diffusion_pytorch_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:90175f4a26450d35c66dc36d2baa6190a00da74040a684e7beb82b911c116795
|
3 |
+
size 63608284
|