End of training
Browse files
README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: stabilityai/stable-diffusion-3.5-large
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
license: other
|
| 5 |
+
instance_prompt: Frog, yarn art style
|
| 6 |
+
widget: []
|
| 7 |
+
tags:
|
| 8 |
+
- text-to-image
|
| 9 |
+
- diffusers-training
|
| 10 |
+
- diffusers
|
| 11 |
+
- lora
|
| 12 |
+
- template:sd-lora
|
| 13 |
+
- sd3.5-large
|
| 14 |
+
- sd3.5
|
| 15 |
+
- sd3.5-diffusers
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
<!-- This model card has been generated automatically according to the information the training script had access to. You
|
| 19 |
+
should probably proofread and complete it, then remove this comment. -->
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
# SD3.5-Large DreamBooth LoRA - bailuyucha/yart_art_sd3-5_lora
|
| 23 |
+
|
| 24 |
+
<Gallery />
|
| 25 |
+
|
| 26 |
+
## Model description
|
| 27 |
+
|
| 28 |
+
These are bailuyucha/yart_art_sd3-5_lora DreamBooth LoRA weights for stabilityai/stable-diffusion-3.5-large.
|
| 29 |
+
|
| 30 |
+
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).
|
| 31 |
+
|
| 32 |
+
Was LoRA for the text encoder enabled? False.
|
| 33 |
+
|
| 34 |
+
## Trigger words
|
| 35 |
+
|
| 36 |
+
You should use `Frog, yarn art style` to trigger the image generation.
|
| 37 |
+
|
| 38 |
+
## Download model
|
| 39 |
+
|
| 40 |
+
[Download the *.safetensors LoRA](bailuyucha/yart_art_sd3-5_lora/tree/main) in the Files & versions tab.
|
| 41 |
+
|
| 42 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
| 43 |
+
|
| 44 |
+
```py
|
| 45 |
+
from diffusers import AutoPipelineForText2Image
|
| 46 |
+
import torch
|
| 47 |
+
pipeline = AutoPipelineForText2Image.from_pretrained(stabilityai/stable-diffusion-3.5-large, torch_dtype=torch.float16).to('cuda')
|
| 48 |
+
pipeline.load_lora_weights('bailuyucha/yart_art_sd3-5_lora', weight_name='pytorch_lora_weights.safetensors')
|
| 49 |
+
image = pipeline('Frog, yarn art style').images[0]
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
|
| 53 |
+
|
| 54 |
+
- **LoRA**: download **[`diffusers_lora_weights.safetensors` here 💾](/bailuyucha/yart_art_sd3-5_lora/blob/main/diffusers_lora_weights.safetensors)**.
|
| 55 |
+
- Rename it and place it on your `models/Lora` folder.
|
| 56 |
+
- 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/).
|
| 57 |
+
|
| 58 |
+
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)
|
| 59 |
+
|
| 60 |
+
## License
|
| 61 |
+
|
| 62 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3.5-large/blob/main/LICENSE.md).
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
## Intended uses & limitations
|
| 66 |
+
|
| 67 |
+
#### How to use
|
| 68 |
+
|
| 69 |
+
```python
|
| 70 |
+
# TODO: add an example code snippet for running this diffusion pipeline
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
#### Limitations and bias
|
| 74 |
+
|
| 75 |
+
[TODO: provide examples of latent issues and potential remediations]
|
| 76 |
+
|
| 77 |
+
## Training details
|
| 78 |
+
|
| 79 |
+
[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:e38df61d07327c9a65f6fecb54ef091dfc6dcae62148faf558bc6c9921f68a26
|
| 3 |
+
size 94832620
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c14a1b50e61d7f240f969ef45e32d49fac9c57c8bf415bfdc2fe9929942151d
|
| 3 |
+
size 47241832
|
checkpoint-500/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:127e2b05fa95a6094a79696bf7df1e74f2c5d7bbbff8cd91ff04676b2755edbe
|
| 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
|
pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9697f9c3b631a25d1084a6606b53c562d5807e9a06ec86f40ca31b3ceb3d0118
|
| 3 |
+
size 47241832
|