End of training
Browse files- README.md +102 -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-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
- image_0.png +0 -0
- image_1.png +0 -0
- image_2.png +0 -0
- image_3.png +0 -0
- image_4.png +0 -0
- image_5.png +0 -0
- image_6.png +0 -0
- image_7.png +0 -0
- pytorch_lora_weights.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: stabilityai/stable-diffusion-3.5-medium
|
3 |
+
library_name: diffusers
|
4 |
+
license: other
|
5 |
+
instance_prompt: an icon of trpfrog
|
6 |
+
widget:
|
7 |
+
- text: an icon of trpfrog eating ramen
|
8 |
+
output:
|
9 |
+
url: image_0.png
|
10 |
+
- text: an icon of trpfrog eating ramen
|
11 |
+
output:
|
12 |
+
url: image_1.png
|
13 |
+
- text: an icon of trpfrog eating ramen
|
14 |
+
output:
|
15 |
+
url: image_2.png
|
16 |
+
- text: an icon of trpfrog eating ramen
|
17 |
+
output:
|
18 |
+
url: image_3.png
|
19 |
+
- text: an icon of trpfrog eating ramen
|
20 |
+
output:
|
21 |
+
url: image_4.png
|
22 |
+
- text: an icon of trpfrog eating ramen
|
23 |
+
output:
|
24 |
+
url: image_5.png
|
25 |
+
- text: an icon of trpfrog eating ramen
|
26 |
+
output:
|
27 |
+
url: image_6.png
|
28 |
+
- text: an icon of trpfrog eating ramen
|
29 |
+
output:
|
30 |
+
url: image_7.png
|
31 |
+
tags:
|
32 |
+
- text-to-image
|
33 |
+
- diffusers-training
|
34 |
+
- diffusers
|
35 |
+
- lora
|
36 |
+
- template:sd-lora
|
37 |
+
- sd3
|
38 |
+
- sd3-diffusers
|
39 |
+
---
|
40 |
+
|
41 |
+
<!-- This model card has been generated automatically according to the information the training script had access to. You
|
42 |
+
should probably proofread and complete it, then remove this comment. -->
|
43 |
+
|
44 |
+
|
45 |
+
# SD3 DreamBooth LoRA - Prgckwb/trpfrog-sd3.5m-lora-2
|
46 |
+
|
47 |
+
<Gallery />
|
48 |
+
|
49 |
+
## Model description
|
50 |
+
|
51 |
+
These are Prgckwb/trpfrog-sd3.5m-lora-2 DreamBooth LoRA weights for stabilityai/stable-diffusion-3.5-medium.
|
52 |
+
|
53 |
+
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).
|
54 |
+
|
55 |
+
Was LoRA for the text encoder enabled? False.
|
56 |
+
|
57 |
+
## Trigger words
|
58 |
+
|
59 |
+
You should use `an icon of trpfrog` to trigger the image generation.
|
60 |
+
|
61 |
+
## Download model
|
62 |
+
|
63 |
+
[Download the *.safetensors LoRA](Prgckwb/trpfrog-sd3.5m-lora-2/tree/main) in the Files & versions tab.
|
64 |
+
|
65 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
66 |
+
|
67 |
+
```py
|
68 |
+
from diffusers import AutoPipelineForText2Image
|
69 |
+
import torch
|
70 |
+
pipeline = AutoPipelineForText2Image.from_pretrained(stabilityai/stable-diffusion-3.5-medium, torch_dtype=torch.float16).to('cuda')
|
71 |
+
pipeline.load_lora_weights('Prgckwb/trpfrog-sd3.5m-lora-2', weight_name='pytorch_lora_weights.safetensors')
|
72 |
+
image = pipeline('an icon of trpfrog eating ramen').images[0]
|
73 |
+
```
|
74 |
+
|
75 |
+
### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
|
76 |
+
|
77 |
+
- **LoRA**: download **[`diffusers_lora_weights.safetensors` here 💾](/Prgckwb/trpfrog-sd3.5m-lora-2/blob/main/diffusers_lora_weights.safetensors)**.
|
78 |
+
- Rename it and place it on your `models/Lora` folder.
|
79 |
+
- 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/).
|
80 |
+
|
81 |
+
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)
|
82 |
+
|
83 |
+
## License
|
84 |
+
|
85 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3-medium/blob/main/LICENSE.md).
|
86 |
+
|
87 |
+
|
88 |
+
## Intended uses & limitations
|
89 |
+
|
90 |
+
#### How to use
|
91 |
+
|
92 |
+
```python
|
93 |
+
# TODO: add an example code snippet for running this diffusion pipeline
|
94 |
+
```
|
95 |
+
|
96 |
+
#### Limitations and bias
|
97 |
+
|
98 |
+
[TODO: provide examples of latent issues and potential remediations]
|
99 |
+
|
100 |
+
## Training details
|
101 |
+
|
102 |
+
[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:824a5f2b425454cd24566666f06bc2c548d79a55f89b1b3b382f5e4956978450
|
3 |
+
size 37872780
|
checkpoint-1000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a62830a44cdd32bed1fb1e74ace619c0d2bd78a02018361cca97126952eab470
|
3 |
+
size 18826480
|
checkpoint-1000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:48108c120ac7d3693d8613c0ca98f65d2e9d0315f2788ea4c5ecd53099f076ca
|
3 |
+
size 14344
|
checkpoint-1000/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e1ef945fb67548939f1340070803ddc6f91925dd6d43f8c15ba25d113f03c5ed
|
3 |
+
size 1000
|
checkpoint-500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3107aa67c1ae593ea14be782350b90efc579f37d3a7cf88a0479c9f7e597c519
|
3 |
+
size 37872780
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c9b1c31c25143d35955a4fb440352eb6f8be7dc3e131f8158822b6001e9362dc
|
3 |
+
size 18826480
|
checkpoint-500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:19d45d6fcb1f21659c19139d6392ee0c485612f19ac3dcb633f9fd095ddc03f2
|
3 |
+
size 14344
|
checkpoint-500/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6cf34ac8dd2addc454aeb1ee4eaba3267c2841857e117be40ac2ed02cf581c9c
|
3 |
+
size 1000
|
image_0.png
ADDED
image_1.png
ADDED
image_2.png
ADDED
image_3.png
ADDED
image_4.png
ADDED
image_5.png
ADDED
image_6.png
ADDED
image_7.png
ADDED
pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a62830a44cdd32bed1fb1e74ace619c0d2bd78a02018361cca97126952eab470
|
3 |
+
size 18826480
|