End of training
Browse files- README.md +80 -0
- pytorch_lora_weights.safetensors +3 -0
README.md
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
tags:
|
| 5 |
+
- text-to-image
|
| 6 |
+
- diffusers-training
|
| 7 |
+
- diffusers
|
| 8 |
+
- lora
|
| 9 |
+
- replicate
|
| 10 |
+
- template:sd-lora
|
| 11 |
+
- sd3.5-large
|
| 12 |
+
- sd3.5
|
| 13 |
+
- sd3.5-diffusers
|
| 14 |
+
base_model: stable-diffusion-3.5-large
|
| 15 |
+
instance_prompt: yu$uk3 mur4t4 art style
|
| 16 |
+
widget: []
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
<!-- This model card has been generated automatically according to the information the training script had access to. You
|
| 20 |
+
should probably proofread and complete it, then remove this comment. -->
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
# SD3.5-Large DreamBooth LoRA - chewbaccay/sd3.5_lora_test
|
| 24 |
+
|
| 25 |
+
<Gallery />
|
| 26 |
+
|
| 27 |
+
## Model description
|
| 28 |
+
|
| 29 |
+
These are chewbaccay/sd3.5_lora_test DreamBooth LoRA weights for stable-diffusion-3.5-large.
|
| 30 |
+
|
| 31 |
+
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).
|
| 32 |
+
|
| 33 |
+
Was LoRA for the text encoder enabled? False.
|
| 34 |
+
|
| 35 |
+
## Trigger words
|
| 36 |
+
|
| 37 |
+
You should use `yu$uk3 mur4t4 art style` to trigger the image generation.
|
| 38 |
+
|
| 39 |
+
## Download model
|
| 40 |
+
|
| 41 |
+
[Download the *.safetensors LoRA](chewbaccay/sd3.5_lora_test/tree/main) in the Files & versions tab.
|
| 42 |
+
|
| 43 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
| 44 |
+
|
| 45 |
+
```py
|
| 46 |
+
from diffusers import AutoPipelineForText2Image
|
| 47 |
+
import torch
|
| 48 |
+
pipeline = AutoPipelineForText2Image.from_pretrained(stable-diffusion-3.5-large, torch_dtype=torch.float16).to('cuda')
|
| 49 |
+
pipeline.load_lora_weights('chewbaccay/sd3.5_lora_test', weight_name='pytorch_lora_weights.safetensors')
|
| 50 |
+
image = pipeline('yu$uk3 mur4t4 art style').images[0]
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
|
| 54 |
+
|
| 55 |
+
- **LoRA**: download **[`diffusers_lora_weights.safetensors` here 💾](/chewbaccay/sd3.5_lora_test/blob/main/diffusers_lora_weights.safetensors)**.
|
| 56 |
+
- Rename it and place it on your `models/Lora` folder.
|
| 57 |
+
- 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/).
|
| 58 |
+
|
| 59 |
+
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)
|
| 60 |
+
|
| 61 |
+
## License
|
| 62 |
+
|
| 63 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3.5-large/blob/main/LICENSE.md).
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
## Intended uses & limitations
|
| 67 |
+
|
| 68 |
+
#### How to use
|
| 69 |
+
|
| 70 |
+
```python
|
| 71 |
+
# TODO: add an example code snippet for running this diffusion pipeline
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
#### Limitations and bias
|
| 75 |
+
|
| 76 |
+
[TODO: provide examples of latent issues and potential remediations]
|
| 77 |
+
|
| 78 |
+
## Training details
|
| 79 |
+
|
| 80 |
+
[TODO: describe the data used to train the model]
|
pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef984ea8bd19e8321740362c49bb79f44b5b5cde670b70163e41b4e9d9d9e31b
|
| 3 |
+
size 23697992
|