---
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: >-
Rackham style art, illustration by Arthur Rackham, extremely detailed fairy
tale artwork, intricate, grotesque, phantasmagoric illustration
widget:
- text: >-
Arthur Rackham style elaborate illustration of a front-facing mystical Goth
young woman fighting against fascists in a fairyland of Spain during the
Spanish civil war, detailed illustration print art by Arthur Rackham
output:
url: images/example_s2u3v1wvm.png
---
## Arthur Rackham Style Flux LoRA
## HISTORIC ππ‘π―ππ€π₯ STYLE βπΈβπ΄π΄
## ||| By SilverAgePoets.com |||
A Low-Rank Adapter (LoRA) for FLUX-family models...
Fine-tuned on around 40 artworks ...
Conjuring the phantasmal tales of old, and traced by the masterous instruments of the famous:
**Arthur Rackham** *(1867-1939)*.
## Prompt with:
Scribble `Rackham style art, illustration by Arthur Rackham, extremely detailed fairy tale artwork, intricate, grotesque, phantasmagoric illustration, fantasy fine strokes, pen, paint, pencil, pastels, oil ` & implore past-masked futures to guide you astray into endless carnival gardens; hedgerows tinseled with rainbows and moonglow, dresses & frock coats scuttle on echoes, rushing to catch for the billionth time early dawn fireworks of yearning igniting... Perhaps in these gardens you'd find at long last some mysteries yet to be dreamed...
## 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/Rackham_Style_FluxLoRA_BySilverAgePoets')
image = pipeline('your prompt').images[0]
```