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-all
|
23 |
+
|
24 |
+
<Gallery />
|
25 |
+
|
26 |
+
## Model description
|
27 |
+
|
28 |
+
These are linoyts/yart_art_sd3-5_lora-all 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-all/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-all', 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-all/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:cde217f46677a5b840e355fb176b4a98ddd6699f430b15664f46bf6464da9ce9
|
3 |
+
size 94832620
|
checkpoint-1000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b057c61926debf76f02a18ebd79489d2dbb5b745ac256753653252e546c7e5bb
|
3 |
+
size 47241832
|
checkpoint-1000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f71028a49062f805af3ff841feb1c1767d875c34b9a2e56beea259da29e254a
|
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:169866e00500d8a228cfb7c7c83b805fbfaa80415c05638f470cb141ea91c5d2
|
3 |
+
size 94832620
|
checkpoint-1500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0d374e5d7c9ad5fc732882564e840cdc6788c2d3e21f5ba5261affe1e5105c7d
|
3 |
+
size 47241832
|
checkpoint-1500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f83dc6f489a054bcec58d374afb55ffb3d493537a7a3a732fdd7504406e3bec
|
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:4e0d19d400f72baf6b47a35f858c020daea0df00a89313d02587b26ab67b74b4
|
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:5a5e2aaa6fb92c8b192ad84291de768e700be90e2991ce9df804aa1e0a501618
|
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:a5b9ce5187986f931829001b76fecc37f3df98fecf60d44769b01c72addf8d8f
|
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:0d374e5d7c9ad5fc732882564e840cdc6788c2d3e21f5ba5261affe1e5105c7d
|
3 |
+
size 47241832
|