sebascorreia
commited on
Commit
•
0e2f9f4
1
Parent(s):
3a9e810
Epoch 0
Browse files
logs/train_unet/events.out.tfevents.1694194250.d6466ec610d1.128260.0
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:93b6b41ce0d38694a55fababb725913a184fc11c00bc003c4c2744fb33bdbbac
|
3 |
+
size 28360560
|
logs/train_unet/events.out.tfevents.1694199536.d6466ec610d1.156816.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d9ea1eeead060b999080b828057fb9eb12352d58b83e18b148305151a4ef69d
|
3 |
+
size 80430
|
model_index.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
],
|
12 |
"unet": [
|
13 |
"diffusers",
|
14 |
-
"
|
15 |
],
|
16 |
"vqvae": [
|
17 |
"diffusers",
|
|
|
11 |
],
|
12 |
"unet": [
|
13 |
"diffusers",
|
14 |
+
"UNet2DModel"
|
15 |
],
|
16 |
"vqvae": [
|
17 |
"diffusers",
|
unet/config.json
CHANGED
@@ -1,68 +1,51 @@
|
|
1 |
{
|
2 |
-
"_class_name": "
|
3 |
"_diffusers_version": "0.20.2",
|
4 |
"act_fn": "silu",
|
5 |
-
"
|
6 |
-
"addition_embed_type_num_heads": 64,
|
7 |
-
"addition_time_embed_dim": null,
|
8 |
"attention_head_dim": 8,
|
9 |
-
"attention_type": "default",
|
10 |
"block_out_channels": [
|
11 |
128,
|
|
|
|
|
12 |
256,
|
13 |
512,
|
14 |
512
|
15 |
],
|
16 |
"center_input_sample": false,
|
17 |
"class_embed_type": null,
|
18 |
-
"class_embeddings_concat": false,
|
19 |
-
"conv_in_kernel": 3,
|
20 |
-
"conv_out_kernel": 3,
|
21 |
-
"cross_attention_dim": 256,
|
22 |
-
"cross_attention_norm": null,
|
23 |
"down_block_types": [
|
24 |
-
"
|
25 |
-
"
|
26 |
-
"
|
|
|
|
|
27 |
"DownBlock2D"
|
28 |
],
|
29 |
"downsample_padding": 1,
|
30 |
-
"
|
31 |
-
"encoder_hid_dim": null,
|
32 |
-
"encoder_hid_dim_type": null,
|
33 |
"flip_sin_to_cos": true,
|
34 |
"freq_shift": 0,
|
35 |
"in_channels": 1,
|
36 |
"layers_per_block": 2,
|
37 |
-
"mid_block_only_cross_attention": null,
|
38 |
"mid_block_scale_factor": 1,
|
39 |
-
"mid_block_type": "UNetMidBlock2DCrossAttn",
|
40 |
"norm_eps": 1e-05,
|
41 |
"norm_num_groups": 32,
|
42 |
-
"num_attention_heads": null,
|
43 |
"num_class_embeds": null,
|
44 |
-
"only_cross_attention": false,
|
45 |
"out_channels": 1,
|
46 |
-
"projection_class_embeddings_input_dim": null,
|
47 |
-
"resnet_out_scale_factor": 1.0,
|
48 |
-
"resnet_skip_time_act": false,
|
49 |
"resnet_time_scale_shift": "default",
|
50 |
"sample_size": [
|
51 |
32,
|
52 |
32
|
53 |
],
|
54 |
-
"time_cond_proj_dim": null,
|
55 |
-
"time_embedding_act_fn": null,
|
56 |
-
"time_embedding_dim": null,
|
57 |
"time_embedding_type": "positional",
|
58 |
-
"timestep_post_act": null,
|
59 |
-
"transformer_layers_per_block": 1,
|
60 |
"up_block_types": [
|
61 |
"UpBlock2D",
|
62 |
-
"
|
63 |
-
"
|
64 |
-
"
|
|
|
|
|
65 |
],
|
66 |
-
"
|
67 |
-
"use_linear_projection": false
|
68 |
}
|
|
|
1 |
{
|
2 |
+
"_class_name": "UNet2DModel",
|
3 |
"_diffusers_version": "0.20.2",
|
4 |
"act_fn": "silu",
|
5 |
+
"add_attention": true,
|
|
|
|
|
6 |
"attention_head_dim": 8,
|
|
|
7 |
"block_out_channels": [
|
8 |
128,
|
9 |
+
128,
|
10 |
+
256,
|
11 |
256,
|
12 |
512,
|
13 |
512
|
14 |
],
|
15 |
"center_input_sample": false,
|
16 |
"class_embed_type": null,
|
|
|
|
|
|
|
|
|
|
|
17 |
"down_block_types": [
|
18 |
+
"DownBlock2D",
|
19 |
+
"DownBlock2D",
|
20 |
+
"DownBlock2D",
|
21 |
+
"DownBlock2D",
|
22 |
+
"AttnDownBlock2D",
|
23 |
"DownBlock2D"
|
24 |
],
|
25 |
"downsample_padding": 1,
|
26 |
+
"downsample_type": "conv",
|
|
|
|
|
27 |
"flip_sin_to_cos": true,
|
28 |
"freq_shift": 0,
|
29 |
"in_channels": 1,
|
30 |
"layers_per_block": 2,
|
|
|
31 |
"mid_block_scale_factor": 1,
|
|
|
32 |
"norm_eps": 1e-05,
|
33 |
"norm_num_groups": 32,
|
|
|
34 |
"num_class_embeds": null,
|
|
|
35 |
"out_channels": 1,
|
|
|
|
|
|
|
36 |
"resnet_time_scale_shift": "default",
|
37 |
"sample_size": [
|
38 |
32,
|
39 |
32
|
40 |
],
|
|
|
|
|
|
|
41 |
"time_embedding_type": "positional",
|
|
|
|
|
42 |
"up_block_types": [
|
43 |
"UpBlock2D",
|
44 |
+
"AttnUpBlock2D",
|
45 |
+
"UpBlock2D",
|
46 |
+
"UpBlock2D",
|
47 |
+
"UpBlock2D",
|
48 |
+
"UpBlock2D"
|
49 |
],
|
50 |
+
"upsample_type": "conv"
|
|
|
51 |
}
|
unet/diffusion_pytorch_model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6a1bc7b786dcb9087f194d52fb6e6bbfe44b30413f05eb9eef29d12623f9fb91
|
3 |
+
size 454722660
|