Commit
·
74425bb
1
Parent(s):
01f32fd
End of training
Browse files- .gitattributes +2 -0
- README.md +22 -0
- config.json +42 -0
- diffusion_pytorch_model.bin +3 -0
- image_control.png +0 -0
- images_0.png +3 -0
- images_1.png +3 -0
- logs/train_controlnet/1686277369.066766/events.out.tfevents.1686277369.8d5939d823a5.509.1 +3 -0
- logs/train_controlnet/1686277369.0693524/hparams.yml +49 -0
- logs/train_controlnet/events.out.tfevents.1686277369.8d5939d823a5.509.0 +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
|
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-ThiennNguyen/finetuned_sd_test
|
| 15 |
+
|
| 16 |
+
These are controlnet weights trained on runwayml/stable-diffusion-v1-5 with new type of conditioning.
|
| 17 |
+
You can find some example images below.
|
| 18 |
+
prompt: red circle with blue background
|
| 19 |
+

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

|
| 22 |
+
|
config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "ControlNetModel",
|
| 3 |
+
"_diffusers_version": "0.18.0.dev0",
|
| 4 |
+
"act_fn": "silu",
|
| 5 |
+
"attention_head_dim": 8,
|
| 6 |
+
"block_out_channels": [
|
| 7 |
+
320,
|
| 8 |
+
640,
|
| 9 |
+
1280,
|
| 10 |
+
1280
|
| 11 |
+
],
|
| 12 |
+
"class_embed_type": null,
|
| 13 |
+
"conditioning_embedding_out_channels": [
|
| 14 |
+
16,
|
| 15 |
+
32,
|
| 16 |
+
96,
|
| 17 |
+
256
|
| 18 |
+
],
|
| 19 |
+
"controlnet_conditioning_channel_order": "rgb",
|
| 20 |
+
"cross_attention_dim": 768,
|
| 21 |
+
"down_block_types": [
|
| 22 |
+
"CrossAttnDownBlock2D",
|
| 23 |
+
"CrossAttnDownBlock2D",
|
| 24 |
+
"CrossAttnDownBlock2D",
|
| 25 |
+
"DownBlock2D"
|
| 26 |
+
],
|
| 27 |
+
"downsample_padding": 1,
|
| 28 |
+
"flip_sin_to_cos": true,
|
| 29 |
+
"freq_shift": 0,
|
| 30 |
+
"global_pool_conditions": false,
|
| 31 |
+
"in_channels": 4,
|
| 32 |
+
"layers_per_block": 2,
|
| 33 |
+
"mid_block_scale_factor": 1,
|
| 34 |
+
"norm_eps": 1e-05,
|
| 35 |
+
"norm_num_groups": 32,
|
| 36 |
+
"num_class_embeds": null,
|
| 37 |
+
"only_cross_attention": false,
|
| 38 |
+
"projection_class_embeddings_input_dim": null,
|
| 39 |
+
"resnet_time_scale_shift": "default",
|
| 40 |
+
"upcast_attention": false,
|
| 41 |
+
"use_linear_projection": false
|
| 42 |
+
}
|
diffusion_pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b457d7c486d59b5e7d773b6071b49d4b69d3c96109db14dc07b22430e171b7c
|
| 3 |
+
size 1445259705
|
image_control.png
ADDED
|
images_0.png
ADDED
|
Git LFS Details
|
images_1.png
ADDED
|
Git LFS Details
|
logs/train_controlnet/1686277369.066766/events.out.tfevents.1686277369.8d5939d823a5.509.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:109adc87d8e822b4ebc3bbcba142611d7c8b8dcc6e245ddee1ccadc2c0cc0172
|
| 3 |
+
size 2293
|
logs/train_controlnet/1686277369.0693524/hparams.yml
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
adam_beta1: 0.9
|
| 2 |
+
adam_beta2: 0.999
|
| 3 |
+
adam_epsilon: 1.0e-08
|
| 4 |
+
adam_weight_decay: 0.01
|
| 5 |
+
allow_tf32: false
|
| 6 |
+
cache_dir: null
|
| 7 |
+
caption_column: text
|
| 8 |
+
checkpointing_steps: 500
|
| 9 |
+
checkpoints_total_limit: null
|
| 10 |
+
conditioning_image_column: conditioning_image
|
| 11 |
+
controlnet_model_name_or_path: null
|
| 12 |
+
dataloader_num_workers: 0
|
| 13 |
+
dataset_config_name: null
|
| 14 |
+
dataset_name: ThiennNguyen/MangaColoring
|
| 15 |
+
enable_xformers_memory_efficient_attention: true
|
| 16 |
+
gradient_accumulation_steps: 4
|
| 17 |
+
gradient_checkpointing: true
|
| 18 |
+
hub_model_id: null
|
| 19 |
+
hub_token: null
|
| 20 |
+
image_column: image
|
| 21 |
+
learning_rate: 1.0e-05
|
| 22 |
+
logging_dir: logs
|
| 23 |
+
lr_num_cycles: 1
|
| 24 |
+
lr_power: 1.0
|
| 25 |
+
lr_scheduler: constant
|
| 26 |
+
lr_warmup_steps: 500
|
| 27 |
+
max_grad_norm: 1.0
|
| 28 |
+
max_train_samples: null
|
| 29 |
+
max_train_steps: 400
|
| 30 |
+
mixed_precision: null
|
| 31 |
+
num_train_epochs: 100
|
| 32 |
+
num_validation_images: 4
|
| 33 |
+
output_dir: finetuned_sd_test
|
| 34 |
+
pretrained_model_name_or_path: runwayml/stable-diffusion-v1-5
|
| 35 |
+
proportion_empty_prompts: 0
|
| 36 |
+
push_to_hub: true
|
| 37 |
+
report_to: tensorboard
|
| 38 |
+
resolution: 512
|
| 39 |
+
resume_from_checkpoint: null
|
| 40 |
+
revision: null
|
| 41 |
+
scale_lr: false
|
| 42 |
+
seed: null
|
| 43 |
+
set_grads_to_none: true
|
| 44 |
+
tokenizer_name: null
|
| 45 |
+
tracker_project_name: train_controlnet
|
| 46 |
+
train_batch_size: 1
|
| 47 |
+
train_data_dir: null
|
| 48 |
+
use_8bit_adam: true
|
| 49 |
+
validation_steps: 100
|
logs/train_controlnet/events.out.tfevents.1686277369.8d5939d823a5.509.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a370ecf58701c676e34783ee4bff876d7a0b9b90844cd2467c063e3f352b4f13
|
| 3 |
+
size 15570543
|