Update README.md
Browse files
README.md
CHANGED
@@ -43,13 +43,13 @@ tags:
|
|
43 |
should probably proofread and complete it, then remove this comment. -->
|
44 |
|
45 |
|
46 |
-
# SD3.5-Large DreamBooth LoRA - Prgckwb/trpfrog-sd3.
|
47 |
|
48 |
<Gallery />
|
49 |
|
50 |
## Model description
|
51 |
|
52 |
-
These are Prgckwb/trpfrog-sd3.
|
53 |
|
54 |
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).
|
55 |
|
@@ -61,16 +61,25 @@ You should use `an icon of trpfrog` to trigger the image generation.
|
|
61 |
|
62 |
## Download model
|
63 |
|
64 |
-
[Download the *.safetensors LoRA](Prgckwb/trpfrog-sd3.
|
65 |
|
66 |
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
67 |
|
68 |
```py
|
69 |
from diffusers import AutoPipelineForText2Image
|
70 |
import torch
|
71 |
-
|
72 |
-
pipeline
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
```
|
75 |
|
76 |
### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
|
@@ -83,21 +92,4 @@ For more details, including weighting, merging and fusing LoRAs, check the [docu
|
|
83 |
|
84 |
## License
|
85 |
|
86 |
-
Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3.5-large/blob/main/LICENSE.md).
|
87 |
-
|
88 |
-
|
89 |
-
## Intended uses & limitations
|
90 |
-
|
91 |
-
#### How to use
|
92 |
-
|
93 |
-
```python
|
94 |
-
# TODO: add an example code snippet for running this diffusion pipeline
|
95 |
-
```
|
96 |
-
|
97 |
-
#### Limitations and bias
|
98 |
-
|
99 |
-
[TODO: provide examples of latent issues and potential remediations]
|
100 |
-
|
101 |
-
## Training details
|
102 |
-
|
103 |
-
[TODO: describe the data used to train the model]
|
|
|
43 |
should probably proofread and complete it, then remove this comment. -->
|
44 |
|
45 |
|
46 |
+
# SD3.5-Large DreamBooth LoRA - Prgckwb/trpfrog-sd3.5-large-lora
|
47 |
|
48 |
<Gallery />
|
49 |
|
50 |
## Model description
|
51 |
|
52 |
+
These are Prgckwb/trpfrog-sd3.5-large-lora DreamBooth LoRA weights for stabilityai/stable-diffusion-3.5-large.
|
53 |
|
54 |
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).
|
55 |
|
|
|
61 |
|
62 |
## Download model
|
63 |
|
64 |
+
[Download the *.safetensors LoRA](Prgckwb/trpfrog-sd3.5-large-lora/tree/main) in the Files & versions tab.
|
65 |
|
66 |
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
67 |
|
68 |
```py
|
69 |
from diffusers import AutoPipelineForText2Image
|
70 |
import torch
|
71 |
+
|
72 |
+
pipeline = AutoPipelineForText2Image.from_pretrained(
|
73 |
+
'stabilityai/stable-diffusion-3.5-large',
|
74 |
+
torch_dtype=torch.float16
|
75 |
+
).to('cuda')
|
76 |
+
|
77 |
+
pipeline.load_lora_weights(
|
78 |
+
'Prgckwb/trpfrog-sd3.5-large-lora',
|
79 |
+
weight_name='pytorch_lora_weights.safetensors'
|
80 |
+
)
|
81 |
+
image = pipeline('an icon of trpfrog').images[0]
|
82 |
+
image.save('trpfrog.png')
|
83 |
```
|
84 |
|
85 |
### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
|
|
|
92 |
|
93 |
## License
|
94 |
|
95 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3.5-large/blob/main/LICENSE.md).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|