Mahmoud7 commited on
Commit
5c63b2e
1 Parent(s): 8f1970e
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitignore +2 -0
  2. checkpoint-1000/optimizer.bin +3 -0
  3. checkpoint-1000/random_states_0.pkl +3 -0
  4. checkpoint-1000/scaler.pt +3 -0
  5. checkpoint-1000/scheduler.bin +3 -0
  6. checkpoint-1000/unet/config.json +40 -0
  7. checkpoint-1000/unet/diffusion_pytorch_model.bin +3 -0
  8. checkpoint-1000/unet_ema/config.json +47 -0
  9. checkpoint-1000/unet_ema/diffusion_pytorch_model.bin +3 -0
  10. checkpoint-1500/optimizer.bin +3 -0
  11. checkpoint-1500/random_states_0.pkl +3 -0
  12. checkpoint-1500/scaler.pt +3 -0
  13. checkpoint-1500/scheduler.bin +3 -0
  14. checkpoint-1500/unet/config.json +40 -0
  15. checkpoint-1500/unet/diffusion_pytorch_model.bin +3 -0
  16. checkpoint-1500/unet_ema/config.json +47 -0
  17. checkpoint-1500/unet_ema/diffusion_pytorch_model.bin +3 -0
  18. checkpoint-2000/optimizer.bin +3 -0
  19. checkpoint-2000/random_states_0.pkl +3 -0
  20. checkpoint-2000/scaler.pt +3 -0
  21. checkpoint-2000/scheduler.bin +3 -0
  22. checkpoint-2000/unet/config.json +40 -0
  23. checkpoint-2000/unet/diffusion_pytorch_model.bin +3 -0
  24. checkpoint-2000/unet_ema/config.json +47 -0
  25. checkpoint-2000/unet_ema/diffusion_pytorch_model.bin +3 -0
  26. checkpoint-2500/optimizer.bin +3 -0
  27. checkpoint-2500/random_states_0.pkl +3 -0
  28. checkpoint-2500/scaler.pt +3 -0
  29. checkpoint-2500/scheduler.bin +3 -0
  30. checkpoint-2500/unet/config.json +40 -0
  31. checkpoint-2500/unet/diffusion_pytorch_model.bin +3 -0
  32. checkpoint-2500/unet_ema/config.json +47 -0
  33. checkpoint-2500/unet_ema/diffusion_pytorch_model.bin +3 -0
  34. checkpoint-3000/optimizer.bin +3 -0
  35. checkpoint-3000/random_states_0.pkl +3 -0
  36. checkpoint-3000/scaler.pt +3 -0
  37. checkpoint-3000/scheduler.bin +3 -0
  38. checkpoint-3000/unet/config.json +40 -0
  39. checkpoint-3000/unet/diffusion_pytorch_model.bin +3 -0
  40. checkpoint-3000/unet_ema/config.json +47 -0
  41. checkpoint-3000/unet_ema/diffusion_pytorch_model.bin +3 -0
  42. checkpoint-500/optimizer.bin +3 -0
  43. checkpoint-500/random_states_0.pkl +3 -0
  44. checkpoint-500/scaler.pt +3 -0
  45. checkpoint-500/scheduler.bin +3 -0
  46. checkpoint-500/unet/config.json +40 -0
  47. checkpoint-500/unet/diffusion_pytorch_model.bin +3 -0
  48. checkpoint-500/unet_ema/config.json +47 -0
  49. checkpoint-500/unet_ema/diffusion_pytorch_model.bin +3 -0
  50. model_index.json +12 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ step_*
2
+ epoch_*
checkpoint-1000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d69bd67808710d2b0ec62dc379f55793f4d7e24ad1a392243149c2659f9a25af
3
+ size 57349893
checkpoint-1000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffe6f0ec5b4ec531c5ffb781160ad26d28e673da2e19fabec62eb84b83fe4284
3
+ size 14599
checkpoint-1000/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68cff80b680ddf6e7abbef98b5f336b97f9b5963e2209307f639383870e8cc71
3
+ size 557
checkpoint-1000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53ad4638aaf323211ac1f24bdf9754cac9b86c6770c93f327301f1be9d439da8
3
+ size 563
checkpoint-1000/unet/config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "down_block_types": [
16
+ "DownBlock2D",
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "AttnDownBlock2D"
20
+ ],
21
+ "downsample_padding": 1,
22
+ "flip_sin_to_cos": true,
23
+ "freq_shift": 0,
24
+ "in_channels": 3,
25
+ "layers_per_block": 2,
26
+ "mid_block_scale_factor": 1,
27
+ "norm_eps": 1e-05,
28
+ "norm_num_groups": 32,
29
+ "num_class_embeds": null,
30
+ "out_channels": 3,
31
+ "resnet_time_scale_shift": "default",
32
+ "sample_size": 256,
33
+ "time_embedding_type": "positional",
34
+ "up_block_types": [
35
+ "AttnUpBlock2D",
36
+ "UpBlock2D",
37
+ "UpBlock2D",
38
+ "UpBlock2D"
39
+ ]
40
+ }
checkpoint-1000/unet/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2af1183038222a1d46766f65448cccbfe6f0263e5e17422a926916e81e8df340
3
+ size 28664529
checkpoint-1000/unet_ema/config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "decay": 0.9999,
16
+ "down_block_types": [
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "DownBlock2D",
20
+ "AttnDownBlock2D"
21
+ ],
22
+ "downsample_padding": 1,
23
+ "flip_sin_to_cos": true,
24
+ "freq_shift": 0,
25
+ "in_channels": 3,
26
+ "inv_gamma": 1.0,
27
+ "layers_per_block": 2,
28
+ "mid_block_scale_factor": 1,
29
+ "min_decay": 0.0,
30
+ "norm_eps": 1e-05,
31
+ "norm_num_groups": 32,
32
+ "num_class_embeds": null,
33
+ "optimization_step": 1000,
34
+ "out_channels": 3,
35
+ "power": 0.75,
36
+ "resnet_time_scale_shift": "default",
37
+ "sample_size": 256,
38
+ "time_embedding_type": "positional",
39
+ "up_block_types": [
40
+ "AttnUpBlock2D",
41
+ "UpBlock2D",
42
+ "UpBlock2D",
43
+ "UpBlock2D"
44
+ ],
45
+ "update_after_step": 0,
46
+ "use_ema_warmup": true
47
+ }
checkpoint-1000/unet_ema/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:626d3c16a3f28fee65a62be25236dd9fff77bc91aebe306df752c38126a5c4cc
3
+ size 28659921
checkpoint-1500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad43519962c3e068976172fb9aab746a8f15237286282063693896264482ff79
3
+ size 57349893
checkpoint-1500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2b5322996d86576b10a46a10c902f121097533613600d5fdbe2073907832559
3
+ size 14599
checkpoint-1500/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:203a72d6c29f42a0e2964fdddc8d7a98df1eccee78fea9de0fa416613390f5c6
3
+ size 557
checkpoint-1500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96780da0007a39f94691a9591ca3c6703a49160a753b6b144dbba68be213815d
3
+ size 563
checkpoint-1500/unet/config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "down_block_types": [
16
+ "DownBlock2D",
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "AttnDownBlock2D"
20
+ ],
21
+ "downsample_padding": 1,
22
+ "flip_sin_to_cos": true,
23
+ "freq_shift": 0,
24
+ "in_channels": 3,
25
+ "layers_per_block": 2,
26
+ "mid_block_scale_factor": 1,
27
+ "norm_eps": 1e-05,
28
+ "norm_num_groups": 32,
29
+ "num_class_embeds": null,
30
+ "out_channels": 3,
31
+ "resnet_time_scale_shift": "default",
32
+ "sample_size": 256,
33
+ "time_embedding_type": "positional",
34
+ "up_block_types": [
35
+ "AttnUpBlock2D",
36
+ "UpBlock2D",
37
+ "UpBlock2D",
38
+ "UpBlock2D"
39
+ ]
40
+ }
checkpoint-1500/unet/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b76f7137e2408f6030a4480a97b321d68428eecd23dcec69262b6fe6c4bcd758
3
+ size 28664529
checkpoint-1500/unet_ema/config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "decay": 0.9999,
16
+ "down_block_types": [
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "DownBlock2D",
20
+ "AttnDownBlock2D"
21
+ ],
22
+ "downsample_padding": 1,
23
+ "flip_sin_to_cos": true,
24
+ "freq_shift": 0,
25
+ "in_channels": 3,
26
+ "inv_gamma": 1.0,
27
+ "layers_per_block": 2,
28
+ "mid_block_scale_factor": 1,
29
+ "min_decay": 0.0,
30
+ "norm_eps": 1e-05,
31
+ "norm_num_groups": 32,
32
+ "num_class_embeds": null,
33
+ "optimization_step": 1500,
34
+ "out_channels": 3,
35
+ "power": 0.75,
36
+ "resnet_time_scale_shift": "default",
37
+ "sample_size": 256,
38
+ "time_embedding_type": "positional",
39
+ "up_block_types": [
40
+ "AttnUpBlock2D",
41
+ "UpBlock2D",
42
+ "UpBlock2D",
43
+ "UpBlock2D"
44
+ ],
45
+ "update_after_step": 0,
46
+ "use_ema_warmup": true
47
+ }
checkpoint-1500/unet_ema/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3effbd9636bb02708055b89e22fa4cacf732956bcf2fb96a2be4a0f298851b99
3
+ size 28659921
checkpoint-2000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dfc68c6103da8db2b20e56a2fbed6da3a89778a3cf2cdef3382096715bff81b
3
+ size 57349893
checkpoint-2000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0eb6aed3447200ab080c4795ea41be4bad9a7d682b2ad0b05e790b91cab9951
3
+ size 14599
checkpoint-2000/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd2de9749828adacdf103bf6e9592702bb7067a2c1df27dd62ab38c1eb8c070f
3
+ size 557
checkpoint-2000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc1b02b51d165d3fbe6ffe2e2469da70ae15ea26b940456dd33a2859bbc8d145
3
+ size 563
checkpoint-2000/unet/config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "down_block_types": [
16
+ "DownBlock2D",
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "AttnDownBlock2D"
20
+ ],
21
+ "downsample_padding": 1,
22
+ "flip_sin_to_cos": true,
23
+ "freq_shift": 0,
24
+ "in_channels": 3,
25
+ "layers_per_block": 2,
26
+ "mid_block_scale_factor": 1,
27
+ "norm_eps": 1e-05,
28
+ "norm_num_groups": 32,
29
+ "num_class_embeds": null,
30
+ "out_channels": 3,
31
+ "resnet_time_scale_shift": "default",
32
+ "sample_size": 256,
33
+ "time_embedding_type": "positional",
34
+ "up_block_types": [
35
+ "AttnUpBlock2D",
36
+ "UpBlock2D",
37
+ "UpBlock2D",
38
+ "UpBlock2D"
39
+ ]
40
+ }
checkpoint-2000/unet/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a97096dd6845998c073c1615491dcfd0bdaf6a94d1fbaebe63dac3d6d945c8bf
3
+ size 28664529
checkpoint-2000/unet_ema/config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "decay": 0.9999,
16
+ "down_block_types": [
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "DownBlock2D",
20
+ "AttnDownBlock2D"
21
+ ],
22
+ "downsample_padding": 1,
23
+ "flip_sin_to_cos": true,
24
+ "freq_shift": 0,
25
+ "in_channels": 3,
26
+ "inv_gamma": 1.0,
27
+ "layers_per_block": 2,
28
+ "mid_block_scale_factor": 1,
29
+ "min_decay": 0.0,
30
+ "norm_eps": 1e-05,
31
+ "norm_num_groups": 32,
32
+ "num_class_embeds": null,
33
+ "optimization_step": 2000,
34
+ "out_channels": 3,
35
+ "power": 0.75,
36
+ "resnet_time_scale_shift": "default",
37
+ "sample_size": 256,
38
+ "time_embedding_type": "positional",
39
+ "up_block_types": [
40
+ "AttnUpBlock2D",
41
+ "UpBlock2D",
42
+ "UpBlock2D",
43
+ "UpBlock2D"
44
+ ],
45
+ "update_after_step": 0,
46
+ "use_ema_warmup": true
47
+ }
checkpoint-2000/unet_ema/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcc503d5242a1124ed86f308e191f1661cbee5728935120099798613db0cf410
3
+ size 28659921
checkpoint-2500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61a2198e5a088aed75904de57deb9979bdf197ff24d97bb9ec50df5a4d1f9622
3
+ size 57349893
checkpoint-2500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdd489c1d119caa585ef3d054394450822d1ef315c33e481176b55db47d4fce2
3
+ size 14599
checkpoint-2500/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fbcebc8f5487b0c117b5dd47f2ea304af3eebf408d297118d9307e1223927e1
3
+ size 557
checkpoint-2500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ad9051d458b8f5dd4f53e95e49d24070f8c7b8cb8c5e154c42b8db78b18ea96
3
+ size 563
checkpoint-2500/unet/config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "down_block_types": [
16
+ "DownBlock2D",
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "AttnDownBlock2D"
20
+ ],
21
+ "downsample_padding": 1,
22
+ "flip_sin_to_cos": true,
23
+ "freq_shift": 0,
24
+ "in_channels": 3,
25
+ "layers_per_block": 2,
26
+ "mid_block_scale_factor": 1,
27
+ "norm_eps": 1e-05,
28
+ "norm_num_groups": 32,
29
+ "num_class_embeds": null,
30
+ "out_channels": 3,
31
+ "resnet_time_scale_shift": "default",
32
+ "sample_size": 256,
33
+ "time_embedding_type": "positional",
34
+ "up_block_types": [
35
+ "AttnUpBlock2D",
36
+ "UpBlock2D",
37
+ "UpBlock2D",
38
+ "UpBlock2D"
39
+ ]
40
+ }
checkpoint-2500/unet/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f97d50f2555add0c0c81345dfa1e1a17d6566461f9e5ffea7b0c950dab24da8
3
+ size 28664529
checkpoint-2500/unet_ema/config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "decay": 0.9999,
16
+ "down_block_types": [
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "DownBlock2D",
20
+ "AttnDownBlock2D"
21
+ ],
22
+ "downsample_padding": 1,
23
+ "flip_sin_to_cos": true,
24
+ "freq_shift": 0,
25
+ "in_channels": 3,
26
+ "inv_gamma": 1.0,
27
+ "layers_per_block": 2,
28
+ "mid_block_scale_factor": 1,
29
+ "min_decay": 0.0,
30
+ "norm_eps": 1e-05,
31
+ "norm_num_groups": 32,
32
+ "num_class_embeds": null,
33
+ "optimization_step": 2500,
34
+ "out_channels": 3,
35
+ "power": 0.75,
36
+ "resnet_time_scale_shift": "default",
37
+ "sample_size": 256,
38
+ "time_embedding_type": "positional",
39
+ "up_block_types": [
40
+ "AttnUpBlock2D",
41
+ "UpBlock2D",
42
+ "UpBlock2D",
43
+ "UpBlock2D"
44
+ ],
45
+ "update_after_step": 0,
46
+ "use_ema_warmup": true
47
+ }
checkpoint-2500/unet_ema/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37f50e52d9b991efe74ca656fac3482371b547ab2100165937d12cc0434eb94b
3
+ size 28659921
checkpoint-3000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ae1c7b32669d46450187e475f72afb30f73d0c744cc44c5e6efe201145a6ec2
3
+ size 57349893
checkpoint-3000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa413cbdaaca415106f5fb388092c43818464ecff4df802cf4d6e4376ad4aa6e
3
+ size 14599
checkpoint-3000/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb1f9398b77268202e8e1465734a63d123b1ef11c27f20f2473677e9883a6869
3
+ size 557
checkpoint-3000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3041709dacccb9a76ff9a1c838cb6b3e20a766059ec16220100860d7429ea43
3
+ size 563
checkpoint-3000/unet/config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "down_block_types": [
16
+ "DownBlock2D",
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "AttnDownBlock2D"
20
+ ],
21
+ "downsample_padding": 1,
22
+ "flip_sin_to_cos": true,
23
+ "freq_shift": 0,
24
+ "in_channels": 3,
25
+ "layers_per_block": 2,
26
+ "mid_block_scale_factor": 1,
27
+ "norm_eps": 1e-05,
28
+ "norm_num_groups": 32,
29
+ "num_class_embeds": null,
30
+ "out_channels": 3,
31
+ "resnet_time_scale_shift": "default",
32
+ "sample_size": 256,
33
+ "time_embedding_type": "positional",
34
+ "up_block_types": [
35
+ "AttnUpBlock2D",
36
+ "UpBlock2D",
37
+ "UpBlock2D",
38
+ "UpBlock2D"
39
+ ]
40
+ }
checkpoint-3000/unet/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d9094780ae7861708b0e479d72a4942fa4f6cc40a90919f6dca2584b3695117
3
+ size 28664529
checkpoint-3000/unet_ema/config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "decay": 0.9999,
16
+ "down_block_types": [
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "DownBlock2D",
20
+ "AttnDownBlock2D"
21
+ ],
22
+ "downsample_padding": 1,
23
+ "flip_sin_to_cos": true,
24
+ "freq_shift": 0,
25
+ "in_channels": 3,
26
+ "inv_gamma": 1.0,
27
+ "layers_per_block": 2,
28
+ "mid_block_scale_factor": 1,
29
+ "min_decay": 0.0,
30
+ "norm_eps": 1e-05,
31
+ "norm_num_groups": 32,
32
+ "num_class_embeds": null,
33
+ "optimization_step": 3000,
34
+ "out_channels": 3,
35
+ "power": 0.75,
36
+ "resnet_time_scale_shift": "default",
37
+ "sample_size": 256,
38
+ "time_embedding_type": "positional",
39
+ "up_block_types": [
40
+ "AttnUpBlock2D",
41
+ "UpBlock2D",
42
+ "UpBlock2D",
43
+ "UpBlock2D"
44
+ ],
45
+ "update_after_step": 0,
46
+ "use_ema_warmup": true
47
+ }
checkpoint-3000/unet_ema/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d729de9a5d30e3d5c5c267e170ac1e79867fa754af78bf74b53fede74c4a1d2
3
+ size 28659921
checkpoint-500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8898c675565e78977c9a6705043a6652fdc2274103294c1a9fb9d33bc212a4a7
3
+ size 57349893
checkpoint-500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e13ed61612ddb11e52a1a2b2609ef6285f41b5d7488a4ba210691fb441af1496
3
+ size 14599
checkpoint-500/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3f196a54202bb4ba1220e8c59f42f9cda0702d68ea83147d814c2fb2f36b8f2
3
+ size 557
checkpoint-500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caa855a58bc71a6fa89384f52cf73f72b07ee47729f7813ad04419a2d25fe313
3
+ size 563
checkpoint-500/unet/config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "down_block_types": [
16
+ "DownBlock2D",
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "AttnDownBlock2D"
20
+ ],
21
+ "downsample_padding": 1,
22
+ "flip_sin_to_cos": true,
23
+ "freq_shift": 0,
24
+ "in_channels": 3,
25
+ "layers_per_block": 2,
26
+ "mid_block_scale_factor": 1,
27
+ "norm_eps": 1e-05,
28
+ "norm_num_groups": 32,
29
+ "num_class_embeds": null,
30
+ "out_channels": 3,
31
+ "resnet_time_scale_shift": "default",
32
+ "sample_size": 256,
33
+ "time_embedding_type": "positional",
34
+ "up_block_types": [
35
+ "AttnUpBlock2D",
36
+ "UpBlock2D",
37
+ "UpBlock2D",
38
+ "UpBlock2D"
39
+ ]
40
+ }
checkpoint-500/unet/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8a47caed9f4a872ae695036aa213acf391cd75bb7999c619aafb17f83d7d7fa
3
+ size 28664529
checkpoint-500/unet_ema/config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet2DModel",
3
+ "_diffusers_version": "0.16.1",
4
+ "act_fn": "silu",
5
+ "add_attention": true,
6
+ "attention_head_dim": 8,
7
+ "block_out_channels": [
8
+ 64,
9
+ 64,
10
+ 128,
11
+ 128
12
+ ],
13
+ "center_input_sample": false,
14
+ "class_embed_type": null,
15
+ "decay": 0.9999,
16
+ "down_block_types": [
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "DownBlock2D",
20
+ "AttnDownBlock2D"
21
+ ],
22
+ "downsample_padding": 1,
23
+ "flip_sin_to_cos": true,
24
+ "freq_shift": 0,
25
+ "in_channels": 3,
26
+ "inv_gamma": 1.0,
27
+ "layers_per_block": 2,
28
+ "mid_block_scale_factor": 1,
29
+ "min_decay": 0.0,
30
+ "norm_eps": 1e-05,
31
+ "norm_num_groups": 32,
32
+ "num_class_embeds": null,
33
+ "optimization_step": 500,
34
+ "out_channels": 3,
35
+ "power": 0.75,
36
+ "resnet_time_scale_shift": "default",
37
+ "sample_size": 256,
38
+ "time_embedding_type": "positional",
39
+ "up_block_types": [
40
+ "AttnUpBlock2D",
41
+ "UpBlock2D",
42
+ "UpBlock2D",
43
+ "UpBlock2D"
44
+ ],
45
+ "update_after_step": 0,
46
+ "use_ema_warmup": true
47
+ }
checkpoint-500/unet_ema/diffusion_pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:188e8a283d8bd859797f836874f76a4c61e83678e7c8a8e2adadb91186ef696b
3
+ size 28659921
model_index.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "DDPMPipeline",
3
+ "_diffusers_version": "0.16.1",
4
+ "scheduler": [
5
+ "diffusers",
6
+ "DDPMScheduler"
7
+ ],
8
+ "unet": [
9
+ "diffusers",
10
+ "UNet2DModel"
11
+ ]
12
+ }