File size: 2,303 Bytes
909a45b
 
 
 
 
 
 
 
 
 
 
 
 
 
dce1c82
 
 
 
 
 
 
 
 
173c02b
 
 
 
 
 
dce1c82
909a45b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
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
- 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_8spgm5ne6.png

---
## Arthur Rackham Style Flux LoRA
## HISTORIC ๐’œ๐“ก๐’ฏ๐š’๐•ค๐•ฅ STYLE โ„’๐“ธโ„œ๐ด๐˜ด
## ||| By SilverAgePoets.com |||

A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
Fine-tuned on around 40 artworks ...   <br>
Conjuring the phantasmal tales of old, and traced by the masterous instruments of the famous: <br>
**Arthur Rackham** *(1867-1939)*. <br>

<Gallery />

## 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...  <br>

## 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]
```