--- 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 - text: Gerda Wegener style painting of a woman in New York City output: url: images/example_cc8ug53aa.png - text: Gerda Wegener style painting of a man running after a car output: url: images/example_q2cb0nei5.png - text: >- Gerda Wegener style painting of of beautiful Arthur Rimbaud, the revolutionary blonde messy haired teenage trans man poet delivering a lecture to parlor book club group of revolutionary poet cat-person hermaphrodite angels circa the 1870s, output: url: images/example_quxo67o5m.png - text: >- Gerda Wegener style painting of Arthur Rimbaud, the radical irreverent blonde messy haired teenage trans man rascal vagabond poet in rags scowling while delivering a lecture to a parlor book club group of revolutionary poet cat-person hermaphrodite mermen circa the 1870s, output: url: images/example_qpfalp41v.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. ## 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] ```