|
|
--- |
|
|
tags: |
|
|
- text-to-image |
|
|
- stable-diffusion |
|
|
- lora |
|
|
- civitai |
|
|
- celebrity |
|
|
- archive |
|
|
- safetensors |
|
|
license: other |
|
|
license_name: civitai-archive-non-commercial-redistribution |
|
|
license_link: https://huggingface.co/stokemctoke/civitai_celeb-lora-archive/blob/main/LICENSE.md |
|
|
--- |
|
|
|
|
|
# ποΈ Civitai Celeb LoRA Archive |
|
|
|
|
|
A **public archive** of all my celebrity LoRAs that were released for free on [Civitai.com](https://civitai.com). Curated by **Stoke** to preserve community access to these creative tools. |
|
|
|
|
|
## π Usage |
|
|
|
|
|
### AUTOMATIC1111 / SD.Next / ComfyUI |
|
|
|
|
|
1. **Download** the `.safetensors` file from **Files and versions**. |
|
|
2. **Place** it in your `models/Lora/` folder. |
|
|
3. **Prompt** using the trigger word, e.g.: |
|
|
``` |
|
|
8R16177384RD07 a posed fashion portrait, dramatic lighting |
|
|
``` |
|
|
|
|
|
--- |
|
|
|
|
|
### Hugging Face Diffusers |
|
|
|
|
|
```python |
|
|
from diffusers import StableDiffusionPipeline |
|
|
import torch |
|
|
|
|
|
pipe = StableDiffusionPipeline.from_pretrained( |
|
|
"CompVis/stable-diffusion-v1-4", |
|
|
torch_dtype=torch.float16 |
|
|
).to("cuda") |
|
|
|
|
|
pipe.load_lora_weights( |
|
|
"stokemctoke/civitai_celeb-lora-archive", |
|
|
weight_name="F1D_Brigitte-Bardot_v02.safetensors" |
|
|
) |
|
|
|
|
|
image = pipe( |
|
|
"[trigger] a posed fashion portrait, dramatic lighting" |
|
|
).images[0] |
|
|
image.save("brigitte-bardot_output.png") |
|
|
``` |
|
|
|