End of training
Browse files- .gitattributes +5 -0
- .gitignore +2 -0
- 800/config.json +33 -0
- 800/diffusion_flax_model.msgpack +3 -0
- README.md +26 -0
- config.json +33 -0
- diffusion_flax_model.msgpack +3 -0
- image_control.png +3 -0
- images_0.png +3 -0
- images_1.png +3 -0
- images_2.png +3 -0
- images_3.png +3 -0
.gitattributes
CHANGED
@@ -32,3 +32,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
image_control.png filter=lfs diff=lfs merge=lfs -text
|
36 |
+
images_0.png filter=lfs diff=lfs merge=lfs -text
|
37 |
+
images_1.png filter=lfs diff=lfs merge=lfs -text
|
38 |
+
images_2.png filter=lfs diff=lfs merge=lfs -text
|
39 |
+
images_3.png filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
step_*
|
2 |
+
epoch_*
|
800/config.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "FlaxControlNetModel",
|
3 |
+
"_diffusers_version": "0.15.0.dev0",
|
4 |
+
"attention_head_dim": 8,
|
5 |
+
"block_out_channels": [
|
6 |
+
320,
|
7 |
+
640,
|
8 |
+
1280,
|
9 |
+
1280
|
10 |
+
],
|
11 |
+
"conditioning_embedding_out_channels": [
|
12 |
+
16,
|
13 |
+
32,
|
14 |
+
96,
|
15 |
+
256
|
16 |
+
],
|
17 |
+
"controlnet_conditioning_channel_order": "rgb",
|
18 |
+
"cross_attention_dim": 768,
|
19 |
+
"down_block_types": [
|
20 |
+
"CrossAttnDownBlock2D",
|
21 |
+
"CrossAttnDownBlock2D",
|
22 |
+
"CrossAttnDownBlock2D",
|
23 |
+
"DownBlock2D"
|
24 |
+
],
|
25 |
+
"dropout": 0.0,
|
26 |
+
"flip_sin_to_cos": true,
|
27 |
+
"freq_shift": 0,
|
28 |
+
"in_channels": 4,
|
29 |
+
"layers_per_block": 2,
|
30 |
+
"only_cross_attention": false,
|
31 |
+
"sample_size": 32,
|
32 |
+
"use_linear_projection": false
|
33 |
+
}
|
800/diffusion_flax_model.msgpack
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f50d37ea5feaba4bdfbd18ab84cc7fc2601729ca7b7592b300632b492c2b938b
|
3 |
+
size 1445128798
|
README.md
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
license: creativeml-openrail-m
|
4 |
+
base_model: runwayml/stable-diffusion-v1-5
|
5 |
+
tags:
|
6 |
+
- stable-diffusion
|
7 |
+
- stable-diffusion-diffusers
|
8 |
+
- text-to-image
|
9 |
+
- diffusers
|
10 |
+
- controlnet
|
11 |
+
inference: true
|
12 |
+
---
|
13 |
+
|
14 |
+
# controlnet- canny-coyo1m-test
|
15 |
+
|
16 |
+
These are controlnet weights trained on runwayml/stable-diffusion-v1-5 with new type of conditioning. You can find some example images in the following.
|
17 |
+
|
18 |
+
prompt: car, a detailed high-quality professional image
|
19 |
+
![images_0)](./images_0.png)
|
20 |
+
prompt: A house on the water with a small yacht out front, a detailed high-quality professional image
|
21 |
+
![images_1)](./images_1.png)
|
22 |
+
prompt: man with polo shirt, a detailed high-quality professional image
|
23 |
+
![images_2)](./images_2.png)
|
24 |
+
prompt: sneaker, a detailed high-quality professional image
|
25 |
+
![images_3)](./images_3.png)
|
26 |
+
|
config.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "FlaxControlNetModel",
|
3 |
+
"_diffusers_version": "0.15.0.dev0",
|
4 |
+
"attention_head_dim": 8,
|
5 |
+
"block_out_channels": [
|
6 |
+
320,
|
7 |
+
640,
|
8 |
+
1280,
|
9 |
+
1280
|
10 |
+
],
|
11 |
+
"conditioning_embedding_out_channels": [
|
12 |
+
16,
|
13 |
+
32,
|
14 |
+
96,
|
15 |
+
256
|
16 |
+
],
|
17 |
+
"controlnet_conditioning_channel_order": "rgb",
|
18 |
+
"cross_attention_dim": 768,
|
19 |
+
"down_block_types": [
|
20 |
+
"CrossAttnDownBlock2D",
|
21 |
+
"CrossAttnDownBlock2D",
|
22 |
+
"CrossAttnDownBlock2D",
|
23 |
+
"DownBlock2D"
|
24 |
+
],
|
25 |
+
"dropout": 0.0,
|
26 |
+
"flip_sin_to_cos": true,
|
27 |
+
"freq_shift": 0,
|
28 |
+
"in_channels": 4,
|
29 |
+
"layers_per_block": 2,
|
30 |
+
"only_cross_attention": false,
|
31 |
+
"sample_size": 32,
|
32 |
+
"use_linear_projection": false
|
33 |
+
}
|
diffusion_flax_model.msgpack
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac59d200a2b1bbfa6c33769d78c7b64655efea256def382e63d9bff6a31337dd
|
3 |
+
size 1445128798
|
image_control.png
ADDED
Git LFS Details
|
images_0.png
ADDED
Git LFS Details
|
images_1.png
ADDED
Git LFS Details
|
images_2.png
ADDED
Git LFS Details
|
images_3.png
ADDED
Git LFS Details
|