End of training
Browse files- README.md +79 -0
- checkpoint-1000/optimizer.bin +3 -0
- checkpoint-1000/pytorch_lora_weights.safetensors +3 -0
- checkpoint-1000/random_states_0.pkl +3 -0
- checkpoint-1000/scheduler.bin +3 -0
- checkpoint-1500/optimizer.bin +3 -0
- checkpoint-1500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-1500/random_states_0.pkl +3 -0
- checkpoint-1500/scheduler.bin +3 -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
- pytorch_lora_weights.safetensors +3 -0
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 |
+
tags:
|
| 6 |
+
- text-to-image
|
| 7 |
+
- diffusers-training
|
| 8 |
+
- diffusers
|
| 9 |
+
- lora
|
| 10 |
+
- template:sd-lora
|
| 11 |
+
- sd3.5-large
|
| 12 |
+
- sd3.5
|
| 13 |
+
- sd3.5-diffusers
|
| 14 |
+
instance_prompt: Frog, yarn art style
|
| 15 |
+
widget: []
|
| 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 - linoyts/yarn-art-30-37-prodigy
|
| 23 |
+
|
| 24 |
+
<Gallery />
|
| 25 |
+
|
| 26 |
+
## Model description
|
| 27 |
+
|
| 28 |
+
These are linoyts/yarn-art-30-37-prodigy 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](linoyts/yarn-art-30-37-prodigy/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('linoyts/yarn-art-30-37-prodigy', 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 💾](/linoyts/yarn-art-30-37-prodigy/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-1000/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8d50dcfff5e2e53c7e5a935fa3cd42d18be25ca507c29301d560c04af5909c6
|
| 3 |
+
size 39370426
|
checkpoint-1000/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23fed6ceb58cf2c318e795627d5c66e4b57340cb2be46927ab279b7ed4cd74a3
|
| 3 |
+
size 9822400
|
checkpoint-1000/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb1991c67ce5bea3dfefbe922e3fc4403efc3783899a630e0d5e09f81120e845
|
| 3 |
+
size 14280
|
checkpoint-1000/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e55c075b40ce3ab6db2c27ecf3b4c90bc4e612fff3a226e651c44881d6a2404
|
| 3 |
+
size 1000
|
checkpoint-1500/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa3c5016ba2d54cfcd73b27dcbc4b95784aef9f53999613284a41ea42046d806
|
| 3 |
+
size 39370426
|
checkpoint-1500/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26e66d733b513f409e6d7cbed53f45e7c7e23dcddd726406c6ef3f0d80d834b7
|
| 3 |
+
size 9822400
|
checkpoint-1500/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf68a3b0d7232ef258620fea730a06842cebf2ddc0b31c8c05ff2bf0cce519ee
|
| 3 |
+
size 14280
|
checkpoint-1500/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab46152b551fb24cef10d97aece42dc7616a1a1b456640ac3f526f7abac6e0e3
|
| 3 |
+
size 1000
|
checkpoint-500/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:423ed6c58260020b7ae651905d49c457a0c9891a0c0207045f80ca79f22a5bfb
|
| 3 |
+
size 39370426
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45e251dae8efc69e7128be76230f525d9833f00ae05184e6458a20f69e25c9ee
|
| 3 |
+
size 9822400
|
checkpoint-500/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:386aad0591bba1f5f6176494f5fa7f3da6f2e752cb3e466ec1f98d6d8528f48c
|
| 3 |
+
size 14280
|
checkpoint-500/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d64e43d780f79b2c41c77b3638f3da55c2a3273c6e72a559cfe6fb2b05479b63
|
| 3 |
+
size 1000
|
pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26e66d733b513f409e6d7cbed53f45e7c7e23dcddd726406c6ef3f0d80d834b7
|
| 3 |
+
size 9822400
|