End of training
Browse files- .gitattributes +3 -0
- .ipynb_checkpoints/image_control-checkpoint.png +0 -0
- .ipynb_checkpoints/images_0-checkpoint.png +3 -0
- .ipynb_checkpoints/images_1-checkpoint.png +3 -0
- README.md +3 -1
- checkpoint-500/controlnet/config.json +44 -0
- checkpoint-500/controlnet/diffusion_pytorch_model.bin +3 -0
- checkpoint-500/optimizer.bin +3 -0
- checkpoint-500/random_states_0.pkl +3 -0
- checkpoint-500/scaler.pt +3 -0
- checkpoint-500/scheduler.bin +3 -0
- diffusion_pytorch_model.bin +1 -1
- image_control.png +0 -0
- images_0.png +2 -2
- images_1.png +2 -2
- images_2.png +3 -0
- logs/train_controlnet/1687464925.3387573/events.out.tfevents.1687464925.zust.10150.1 +3 -0
- logs/train_controlnet/1687464925.3407977/hparams.yml +49 -0
- logs/train_controlnet/events.out.tfevents.1687464925.zust.10150.0 +3 -0
.gitattributes
CHANGED
@@ -35,3 +35,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
35 |
*tfevents* 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
|
|
|
|
|
|
|
|
35 |
*tfevents* 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 |
+
.ipynb_checkpoints/images_0-checkpoint.png filter=lfs diff=lfs merge=lfs -text
|
39 |
+
.ipynb_checkpoints/images_1-checkpoint.png filter=lfs diff=lfs merge=lfs -text
|
40 |
+
images_2.png filter=lfs diff=lfs merge=lfs -text
|
.ipynb_checkpoints/image_control-checkpoint.png
ADDED
.ipynb_checkpoints/images_0-checkpoint.png
ADDED
Git LFS Details
|
.ipynb_checkpoints/images_1-checkpoint.png
ADDED
Git LFS Details
|
README.md
CHANGED
@@ -15,8 +15,10 @@ inference: true
|
|
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: an
|
19 |
![images_0)](./images_0.png)
|
20 |
prompt: an asian girl, best photoshoot, portrait
|
21 |
![images_1)](./images_1.png)
|
|
|
|
|
22 |
|
|
|
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: an handsome man, photoshoot
|
19 |
![images_0)](./images_0.png)
|
20 |
prompt: an asian girl, best photoshoot, portrait
|
21 |
![images_1)](./images_1.png)
|
22 |
+
prompt: an beautiful girl, best photoshoot, portrait
|
23 |
+
![images_2)](./images_2.png)
|
24 |
|
checkpoint-500/controlnet/config.json
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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_channels": 3,
|
14 |
+
"conditioning_embedding_out_channels": [
|
15 |
+
16,
|
16 |
+
32,
|
17 |
+
96,
|
18 |
+
256
|
19 |
+
],
|
20 |
+
"controlnet_conditioning_channel_order": "rgb",
|
21 |
+
"cross_attention_dim": 768,
|
22 |
+
"down_block_types": [
|
23 |
+
"CrossAttnDownBlock2D",
|
24 |
+
"CrossAttnDownBlock2D",
|
25 |
+
"CrossAttnDownBlock2D",
|
26 |
+
"DownBlock2D"
|
27 |
+
],
|
28 |
+
"downsample_padding": 1,
|
29 |
+
"flip_sin_to_cos": true,
|
30 |
+
"freq_shift": 0,
|
31 |
+
"global_pool_conditions": false,
|
32 |
+
"in_channels": 4,
|
33 |
+
"layers_per_block": 2,
|
34 |
+
"mid_block_scale_factor": 1,
|
35 |
+
"norm_eps": 1e-05,
|
36 |
+
"norm_num_groups": 32,
|
37 |
+
"num_attention_heads": null,
|
38 |
+
"num_class_embeds": null,
|
39 |
+
"only_cross_attention": false,
|
40 |
+
"projection_class_embeddings_input_dim": null,
|
41 |
+
"resnet_time_scale_shift": "default",
|
42 |
+
"upcast_attention": false,
|
43 |
+
"use_linear_projection": false
|
44 |
+
}
|
checkpoint-500/controlnet/diffusion_pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d31a8cce2febd63701f04523a888bacb244c43fc0b967f7e51ad8a7496ed9866
|
3 |
+
size 1445259705
|
checkpoint-500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5ea427d238f32c4dc835c1a84d0ef342f74d517c48173292d70267c1e8198d42
|
3 |
+
size 2890518041
|
checkpoint-500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f76f64904e3fb08e2a916dec31acf01eef9ac2d98aaf72bff29836466c169cd6
|
3 |
+
size 14727
|
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:6be622d51c3bcf8a1991c02b9778f31d7e3a79a8b22e03e81a36e25205ef4c5b
|
3 |
+
size 563
|
diffusion_pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 1445259705
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:220e3e69886a40379f066b865d0c15201bcc0991a5bd48c32bf1446c615f96e2
|
3 |
size 1445259705
|
image_control.png
CHANGED
images_0.png
CHANGED
Git LFS Details
|
Git LFS Details
|
images_1.png
CHANGED
Git LFS Details
|
Git LFS Details
|
images_2.png
ADDED
Git LFS Details
|
logs/train_controlnet/1687464925.3387573/events.out.tfevents.1687464925.zust.10150.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65bc37a76cab136e662e9cc71f2e439fd206c3b4e5d090942979245ae39bb9af
|
3 |
+
size 2317
|
logs/train_controlnet/1687464925.3407977/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: ./qr_dataset
|
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: 5.0e-06
|
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: 660
|
30 |
+
mixed_precision: fp16
|
31 |
+
num_train_epochs: 30
|
32 |
+
num_validation_images: 4
|
33 |
+
output_dir: ./model
|
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: 2
|
47 |
+
train_data_dir: null
|
48 |
+
use_8bit_adam: false
|
49 |
+
validation_steps: 100
|
logs/train_controlnet/events.out.tfevents.1687464925.zust.10150.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8da16f73adad7501876171bacf7de8ea352a2d4df712e33d1db517bb100ce9bf
|
3 |
+
size 29920149
|