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-30-37
|
23 |
+
|
24 |
+
<Gallery />
|
25 |
+
|
26 |
+
## Model description
|
27 |
+
|
28 |
+
These are linoyts/yart_art_sd3-5_lora-30-37 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-30-37/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-30-37', 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-30-37/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:06a33733ff872e0377f79e65d0c1bae726408151b5c3e9048ba9ae30a2ec8926
|
3 |
+
size 19717498
|
checkpoint-1000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9bab0c54612e8f1ee42ea69883955d8fb57087eca79e80e33ecbab64f703329b
|
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:857d4d5a234a052309d9b78643464a6bc59db9b99b267577b02c0ca0c4b1f7c9
|
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:b926c5d3d70823ce450cd3b6211c6d8a5a46508708fb662468e7b6a758725000
|
3 |
+
size 19717498
|
checkpoint-1500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e01978a3d95ad7f099160ddf5f6cd6e01ff33b7b69d696db0070e30f87253fd0
|
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:cae2bee7223d4ac5385dc2f1cb63ff79f133962e2e850b6f87d84d98512b7acd
|
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:fc52366be6de3d1a06de191fdf475296ec981037740b64866dac6b89c3911435
|
3 |
+
size 19717498
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fed18de28b89a9370fcf1fd4f275c531fb5859555c13bd700efd890c900f3b2e
|
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:82d232d2f8c60f6f327cbdaa2882d55f7d63d0d1f918cd93f0a3d6028d6142e8
|
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:e01978a3d95ad7f099160ddf5f6cd6e01ff33b7b69d696db0070e30f87253fd0
|
3 |
+
size 9822400
|