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/yart_art_sd3-5_lora-12-24
|
23 |
+
|
24 |
+
<Gallery />
|
25 |
+
|
26 |
+
## Model description
|
27 |
+
|
28 |
+
These are linoyts/yart_art_sd3-5_lora-12-24 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/yart_art_sd3-5_lora-12-24/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/yart_art_sd3-5_lora-12-24', 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/yart_art_sd3-5_lora-12-24/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:25785811e639f6169a168ca60c2e500b25378f8910b7267a62b8ca5940a6b23a
|
3 |
+
size 32549306
|
checkpoint-1000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b141d52e84c22ea023fa66cbdb692fcedd9588157aeea9a41f4b3348b8970caf
|
3 |
+
size 16214912
|
checkpoint-1000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ca759728e30c198cda00e1c22e0a422ae80c128c5fe78bec5fa0299122e7307
|
3 |
+
size 14280
|
checkpoint-1000/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1f26516688b8724db1aac8f799259f80da0817b95966b5e91086005c8918d51
|
3 |
+
size 1000
|
checkpoint-1500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:683e27990aaf7ccb06c17b77c25fb9d6964aabb4f66eb18ce6688c6281cab8e0
|
3 |
+
size 32549306
|
checkpoint-1500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:06ceec96f2dac57800915096b45d52ebf6a91b63e124040af775d35a54b1ab9f
|
3 |
+
size 16214912
|
checkpoint-1500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fb1fec4e19a1ed195f79f7105b96fe5162c7e8da4f5be572ce209b024c87ee05
|
3 |
+
size 14280
|
checkpoint-1500/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6e7598187138897f6d1e56437a02680c0020cd5e06fc21866ef7af24497337b3
|
3 |
+
size 1000
|
checkpoint-500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8a789812de2b861c0f0f6683a27309aca6c7af835b75d1ae6b3088f4a66058e7
|
3 |
+
size 32549306
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fdff88055f404d77afbbfc695be132b15209bf0f335463d0a8571af290038b2c
|
3 |
+
size 16214912
|
checkpoint-500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:10cee8a4b7d262af98341b8d25d632912cfa56b2a68e999f1519705258267b73
|
3 |
+
size 14280
|
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:06ceec96f2dac57800915096b45d52ebf6a91b63e124040af775d35a54b1ab9f
|
3 |
+
size 16214912
|