|
--- |
|
license: other |
|
license_name: bespoke-lora-trained-license |
|
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True |
|
tags: |
|
- text-to-image |
|
- stable-diffusion |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
- migrated |
|
- photorealistic |
|
- sexy |
|
- woman |
|
- celebrity |
|
- girls |
|
- realistic |
|
- buffy the vampire slayer |
|
- btvs |
|
|
|
base_model: black-forest-labs/FLUX.1-dev |
|
instance_prompt: |
|
widget: |
|
- text: ' this is an image of a young women with shoulder length red hair, pink sweater, standing in a library, holding a stack of books, smiling' |
|
|
|
output: |
|
url: >- |
|
33039101.jpeg |
|
- text: ' this is an image of a young women with long straight red hair, wearing a pink knitted sweater, backpack, in a library, holding a book. smiling' |
|
|
|
output: |
|
url: >- |
|
33039159.jpeg |
|
- text: ' this is an image of a young women with long straight red hair, wearing a pink knitted sweater, backpack, in a library, holding a book. smiling' |
|
|
|
output: |
|
url: >- |
|
33039165.jpeg |
|
- text: ' this is an image of a young women with shoulder length red hair, red and black corset, gothic short-sleeved, standing in an alley at night, full moon, wicked grin, hungry eyes, otherworldly look, vampire, fangs' |
|
|
|
output: |
|
url: >- |
|
33039236.jpeg |
|
- text: ' this is an image of a young women with shoulder length red hair, red and black corset, gothic short-sleeved, standing in an alley, wicked grin, hungry eyes' |
|
|
|
output: |
|
url: >- |
|
33039218.jpeg |
|
- text: ' this is an image of a young women with shoulder length red hair, red and black corset, gothic short-sleeved, standing in an alley at night, full moon, wicked grin, hungry eyes, otherworldly look, vampire, fangs' |
|
|
|
output: |
|
url: >- |
|
33039275.jpeg |
|
|
|
--- |
|
|
|
# Willow Rosenberg (Flux) - Buffy the Vampire Slayer Series |
|
|
|
<Gallery /> |
|
|
|
|
|
|
|
([CivitAI](https://civitai.com/models/)) |
|
|
|
## Model description |
|
|
|
<p>Willow Rosenberg as portrayed by Alyson Hannigan. Trained for Flux.</p> |
|
|
|
|
|
|
|
## Download model |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/Keltezaa/willow-rosenberg-flux-buffy-the-vampire-slayer-series/tree/main) them in the Files & versions tab. |
|
|
|
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) |
|
|
|
```py |
|
from diffusers import AutoPipelineForText2Image |
|
import torch |
|
|
|
device = "cuda" if torch.cuda.is_available() else "cpu" |
|
|
|
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device) |
|
pipeline.load_lora_weights('Keltezaa/willow-rosenberg-flux-buffy-the-vampire-slayer-series', weight_name='Willow_Rosenberg_Flux.safetensors') |
|
image = pipeline(' this is an image of a young women with shoulder length red hair, red and black corset, gothic short-sleeved, standing in an alley at night, full moon, wicked grin, hungry eyes, otherworldly look, vampire, fangs').images[0] |
|
``` |
|
|
|
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) |
|
|
|
|