File size: 1,304 Bytes
61987bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83e6978
61987bc
 
 
 
 
 
 
 
 
1bac559
61987bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376e6bc
61987bc
 
 
376e6bc
61987bc
376e6bc
61987bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
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")
```