Upload folder using huggingface_hub
Browse files- README.md +82 -0
- checkpoint-500/optimizer.bin +3 -0
- checkpoint-500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-500/random_states_0.pkl +3 -0
- checkpoint-500/scheduler.bin +3 -0
- logs/dreambooth-sd3-lora/1729862495.947018/events.out.tfevents.1729862495.eecf34ae62f9.3504.1 +3 -0
- logs/dreambooth-sd3-lora/1729862495.9489188/hparams.yml +75 -0
- logs/dreambooth-sd3-lora/events.out.tfevents.1729862495.eecf34ae62f9.3504.0 +3 -0
- pytorch_lora_weights.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: stabilityai/stable-diffusion-3.5-large
|
3 |
+
library_name: diffusers
|
4 |
+
license: other
|
5 |
+
instance_prompt: SK style figure of a student holding a large, round object, wearing
|
6 |
+
a plaid jacket, facing an angry teacher who is pointing at the student with a stick,
|
7 |
+
plain environment with minimal details, harsh contrast lighting, scene evokes tension
|
8 |
+
and discipline.
|
9 |
+
widget: []
|
10 |
+
tags:
|
11 |
+
- text-to-image
|
12 |
+
- diffusers-training
|
13 |
+
- diffusers
|
14 |
+
- lora
|
15 |
+
- template:sd-lora
|
16 |
+
- sd3.5-large
|
17 |
+
- sd3.5
|
18 |
+
- sd3.5-diffusers
|
19 |
+
---
|
20 |
+
|
21 |
+
<!-- This model card has been generated automatically according to the information the training script had access to. You
|
22 |
+
should probably proofread and complete it, then remove this comment. -->
|
23 |
+
|
24 |
+
|
25 |
+
# SD3.5-Large DreamBooth LoRA - ariG23498/sukumar-ray-characters-sd3.5-lora
|
26 |
+
|
27 |
+
<Gallery />
|
28 |
+
|
29 |
+
## Model description
|
30 |
+
|
31 |
+
These are ariG23498/sukumar-ray-characters-sd3.5-lora DreamBooth LoRA weights for stabilityai/stable-diffusion-3.5-large.
|
32 |
+
|
33 |
+
The weights were trained using [DreamBooth](https://dreambooth.github.io/) with the [SD3 diffusers trainer](https://github.com/huggingface/diffusers/blob/main/examples/dreambooth/README_sd3.md).
|
34 |
+
|
35 |
+
Was LoRA for the text encoder enabled? False.
|
36 |
+
|
37 |
+
## Trigger words
|
38 |
+
|
39 |
+
You should use `SK style figure of a student holding a large, round object, wearing a plaid jacket, facing an angry teacher who is pointing at the student with a stick, plain environment with minimal details, harsh contrast lighting, scene evokes tension and discipline.` to trigger the image generation.
|
40 |
+
|
41 |
+
## Download model
|
42 |
+
|
43 |
+
[Download the *.safetensors LoRA](ariG23498/sukumar-ray-characters-sd3.5-lora/tree/main) in the Files & versions tab.
|
44 |
+
|
45 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
46 |
+
|
47 |
+
```py
|
48 |
+
from diffusers import AutoPipelineForText2Image
|
49 |
+
import torch
|
50 |
+
pipeline = AutoPipelineForText2Image.from_pretrained(stabilityai/stable-diffusion-3.5-large, torch_dtype=torch.float16).to('cuda')
|
51 |
+
pipeline.load_lora_weights('ariG23498/sukumar-ray-characters-sd3.5-lora', weight_name='pytorch_lora_weights.safetensors')
|
52 |
+
image = pipeline('SK style figure of a student holding a large, round object, wearing a plaid jacket, facing an angry teacher who is pointing at the student with a stick, plain environment with minimal details, harsh contrast lighting, scene evokes tension and discipline.').images[0]
|
53 |
+
```
|
54 |
+
|
55 |
+
### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
|
56 |
+
|
57 |
+
- **LoRA**: download **[`diffusers_lora_weights.safetensors` here 💾](/ariG23498/sukumar-ray-characters-sd3.5-lora/blob/main/diffusers_lora_weights.safetensors)**.
|
58 |
+
- Rename it and place it on your `models/Lora` folder.
|
59 |
+
- On AUTOMATIC1111, load the LoRA by adding `<lora:your_new_name:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
|
60 |
+
|
61 |
+
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
|
62 |
+
|
63 |
+
## License
|
64 |
+
|
65 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3.5-large/blob/main/LICENSE.md).
|
66 |
+
|
67 |
+
|
68 |
+
## Intended uses & limitations
|
69 |
+
|
70 |
+
#### How to use
|
71 |
+
|
72 |
+
```python
|
73 |
+
# TODO: add an example code snippet for running this diffusion pipeline
|
74 |
+
```
|
75 |
+
|
76 |
+
#### Limitations and bias
|
77 |
+
|
78 |
+
[TODO: provide examples of latent issues and potential remediations]
|
79 |
+
|
80 |
+
## Training details
|
81 |
+
|
82 |
+
[TODO: describe the data used to train the model]
|
checkpoint-500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f878bf469aacce6143148f91debb883ca81a9d378495087ec2cc92645576158d
|
3 |
+
size 47571962
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee93ae2bc719eb09deb42aba220ce1e5832b8367a1594daee583aa07fb1c5591
|
3 |
+
size 23697992
|
checkpoint-500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c69faa19e74688cfebca2a9ab9c8d581455ec7d8b8e39d79170d14ef79006c27
|
3 |
+
size 14344
|
checkpoint-500/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:55d89757e9a416b80d2e21ab8e682105c317c618793a364358277d485b3dbfc8
|
3 |
+
size 1000
|
logs/dreambooth-sd3-lora/1729862495.947018/events.out.tfevents.1729862495.eecf34ae62f9.3504.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3032d45530e73585792b20f634e27cc6ca1228e4571e51e4f890028ba02d8256
|
3 |
+
size 3571
|
logs/dreambooth-sd3-lora/1729862495.9489188/hparams.yml
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
adam_beta1: 0.9
|
2 |
+
adam_beta2: 0.999
|
3 |
+
adam_epsilon: 1.0e-08
|
4 |
+
adam_weight_decay: 0.0001
|
5 |
+
adam_weight_decay_text_encoder: 0.001
|
6 |
+
allow_tf32: false
|
7 |
+
cache_dir: null
|
8 |
+
cache_latents: false
|
9 |
+
caption_column: text
|
10 |
+
center_crop: false
|
11 |
+
checkpointing_steps: 500
|
12 |
+
checkpoints_total_limit: null
|
13 |
+
class_data_dir: null
|
14 |
+
class_prompt: null
|
15 |
+
dataloader_num_workers: 0
|
16 |
+
dataset_config_name: null
|
17 |
+
dataset_name: ariG23498/sukumar-ray-painting
|
18 |
+
gradient_accumulation_steps: 1
|
19 |
+
gradient_checkpointing: false
|
20 |
+
hub_model_id: null
|
21 |
+
hub_token: null
|
22 |
+
image_column: image
|
23 |
+
instance_data_dir: null
|
24 |
+
instance_prompt: SK style figure of a student holding a large, round object, wearing
|
25 |
+
a plaid jacket, facing an angry teacher who is pointing at the student with a stick,
|
26 |
+
plain environment with minimal details, harsh contrast lighting, scene evokes tension
|
27 |
+
and discipline.
|
28 |
+
learning_rate: 0.0004
|
29 |
+
local_rank: -1
|
30 |
+
logging_dir: logs
|
31 |
+
logit_mean: 0.0
|
32 |
+
logit_std: 1.0
|
33 |
+
lr_num_cycles: 1
|
34 |
+
lr_power: 1.0
|
35 |
+
lr_scheduler: constant
|
36 |
+
lr_warmup_steps: 0
|
37 |
+
max_grad_norm: 1.0
|
38 |
+
max_sequence_length: 77
|
39 |
+
max_train_steps: 700
|
40 |
+
mixed_precision: bf16
|
41 |
+
mode_scale: 1.29
|
42 |
+
num_class_images: 100
|
43 |
+
num_train_epochs: 88
|
44 |
+
num_validation_images: 4
|
45 |
+
optimizer: AdamW
|
46 |
+
output_dir: sukumar-ray-characters-sd3.5-lora
|
47 |
+
precondition_outputs: 1
|
48 |
+
pretrained_model_name_or_path: stabilityai/stable-diffusion-3.5-large
|
49 |
+
prior_generation_precision: null
|
50 |
+
prior_loss_weight: 1.0
|
51 |
+
prodigy_beta3: null
|
52 |
+
prodigy_decouple: true
|
53 |
+
prodigy_safeguard_warmup: true
|
54 |
+
prodigy_use_bias_correction: true
|
55 |
+
push_to_hub: true
|
56 |
+
random_flip: false
|
57 |
+
rank: 16
|
58 |
+
repeats: 1
|
59 |
+
report_to: tensorboard
|
60 |
+
resolution: 768
|
61 |
+
resume_from_checkpoint: null
|
62 |
+
revision: null
|
63 |
+
sample_batch_size: 4
|
64 |
+
scale_lr: false
|
65 |
+
seed: 0
|
66 |
+
text_encoder_lr: 5.0e-06
|
67 |
+
train_batch_size: 1
|
68 |
+
train_text_encoder: false
|
69 |
+
upcast_before_saving: false
|
70 |
+
use_8bit_adam: false
|
71 |
+
validation_epochs: 50
|
72 |
+
validation_prompt: null
|
73 |
+
variant: null
|
74 |
+
weighting_scheme: logit_normal
|
75 |
+
with_prior_preservation: false
|
logs/dreambooth-sd3-lora/events.out.tfevents.1729862495.eecf34ae62f9.3504.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ed13565d9f60fba9588f445ae908d3ffbeb0a577ef83e907fa41c336cb6348d
|
3 |
+
size 58634
|
pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:72b7b2d2e53800f4a4120b4f1cfc1058c69aadccf591a0b7eaac37f13049b565
|
3 |
+
size 23697992
|