File size: 1,029 Bytes
0b0bf8e d0b981d 0b0bf8e |
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 |
---
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]
```
|