AlekseyCalvin's picture
Add generated example
d0b981d verified
|
raw
history blame
1.03 kB
---
license: apache-2.0
language:
- en
base_model:
- black-forest-labs/FLUX.1-dev
tags:
- lora
- flux
- diffusers
- image-generation
pipeline_tag: text-to-image
library_name: diffusers
instance_prompt: Gerda Wegener style painting, artwork
widget:
- text: >-
Gerda Wegener style painting of a modern woman, 21st century, by Gerda
Wegener, stylized
output:
url: images/example_2u8j25goh.png
---
## Gerda Wegener Style FLUX LoRA
## ||| By SilverAgePoets.com |||
## Trigger words
You should use `Gerda Wegener style painting` to bring in the style of this most universal of portraitists.
<Gallery />
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
```py
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('AlekseyCalvin/GerdaWegener_Style_FluxLoRA_bySilverAgePoets')
image = pipeline('your prompt').images[0]
```