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