End of training
Browse files- .gitattributes +2 -0
- 5000/config.json +33 -0
- 5000/diffusion_flax_model.msgpack +3 -0
- README.md +22 -0
- config.json +33 -0
- diffusion_flax_model.msgpack +3 -0
- image_control.png +0 -0
- images_0.png +3 -0
- images_1.png +3 -0
.gitattributes
CHANGED
|
@@ -32,3 +32,5 @@ 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 |
+
images_0.png filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
images_1.png filter=lfs diff=lfs merge=lfs -text
|
5000/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 |
+
}
|
5000/diffusion_flax_model.msgpack
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:774078bc3fff752af8c90ba0177422e0ddf3dea2d4ea40e40489cc080090aa47
|
| 3 |
+
size 1445128798
|
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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- andsteing/fill-circle-controlnet
|
| 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: red circle with blue background
|
| 19 |
+

|
| 20 |
+
prompt: cyan circle with brown floral background
|
| 21 |
+

|
| 22 |
+
|
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:358a8d1c178542d2750ae1129f1012ce38e0e6cc22c16eb2f5c9d8edf781f5d8
|
| 3 |
+
size 1445128798
|
image_control.png
ADDED
|
images_0.png
ADDED
|
Git LFS Details
|
images_1.png
ADDED
|
Git LFS Details
|