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-max-grad-norm
|
23 |
+
|
24 |
+
<Gallery />
|
25 |
+
|
26 |
+
## Model description
|
27 |
+
|
28 |
+
These are linoyts/yarn-art-30-37-max-grad-norm 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-max-grad-norm/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-max-grad-norm', 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-max-grad-norm/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:53fb890c508cec78246b9031628d5ed3648b601434afd975ed7c814e503cf6b2
|
3 |
+
size 52266556
|
checkpoint-1000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ba81199c93c34d80e94735224eaffdb7c1e5213ff2f78f1d6ca4f82ae7f7a51
|
3 |
+
size 26037552
|
checkpoint-1000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0a03595b97f8ca8e42108710113cb0566f0a7f45c7a7c815f8bddfddb172230f
|
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:44022d98ab6d6505fceb7cc658f1f97ad386b46942c1c9a627465aa57d52f427
|
3 |
+
size 52266556
|
checkpoint-1500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:91735b365fe4db37858691f80249080781d797d39d20effdb95c9efd8e6a95a0
|
3 |
+
size 26037552
|
checkpoint-1500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8b7779a38d7d44e3f8fc3633f6f82ba4703775b47aeee017cc42e2068419057b
|
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:e3e2e58e96e2b16b7b6b6cabc6318b1c565c7fc1a4e2b93cc01f7e7210fa6fbc
|
3 |
+
size 52266556
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0c7556e413265f40e9e9b85082349e7e909acb065ae5648dcbb2161197e741b
|
3 |
+
size 26037552
|
checkpoint-500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f332041fc1f57dc6dd3a9a4e168a2c323b0bb62c604918e3b5e018547ad0fd9
|
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:91735b365fe4db37858691f80249080781d797d39d20effdb95c9efd8e6a95a0
|
3 |
+
size 26037552
|