AlekseyCalvin
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,42 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
base_model:
|
6 |
+
- black-forest-labs/FLUX.1-dev
|
7 |
+
tags:
|
8 |
+
- lora
|
9 |
+
- flux
|
10 |
+
- diffusers
|
11 |
+
- image-generation
|
12 |
+
pipeline_tag: text-to-image
|
13 |
+
library_name: diffusers
|
14 |
+
instance_prompt: >-
|
15 |
+
Edouard Chimot style print illustration, early 1900s French stylized realistic erotic art, illustration by Édouard Chimot, extremely detailed print illustration, The composition showcases both elegance and everyday life,
|
16 |
+
intricate, realistic pencil and pen shading, Symbolism
|
17 |
+
---
|
18 |
+
## Édouard Chimot Style Flux LoRA
|
19 |
+
## HISTORIC 𝒜𝓡𝒯𝚒𝕤𝕥 STYLE ℒ𝓸ℜ𝐴𝘴
|
20 |
+
## ||| By SilverAgePoets.com |||
|
21 |
+
|
22 |
+
A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
|
23 |
+
Fine-tuned on around 40 artworks ... <br>
|
24 |
+
Conjuring the eerie erotic realism of the accomplished truth-pursuing French artist, print/poster-maker, & literary illustrator... <br>
|
25 |
+
Today perhaps best known for uncannily illustrating several editions of poet Charles Baudelaire's seminal versebook *"Les Fleurs Du Mal" ("Flowers of Evil")*: <br>
|
26 |
+
**Édouard Chimot** *(1880-1959)*. <br>
|
27 |
+
|
28 |
+
<Gallery />
|
29 |
+
|
30 |
+
## Prompt with:
|
31 |
+
Scribble `Edouard Chimot style print illustration, early 1900s French stylized realistic erotic art, illustration by Édouard Chimot, extremely detailed print illustration, The composition showcases both elegance and everyday life, intricate, realistic pencil and pen shading, Symbolism ` to revitalalize through yearned-for reveries over elegantly unsheathed timeless forms your generative inspiration's inevitably wilting flowers... <br>
|
32 |
+
|
33 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
34 |
+
|
35 |
+
```py
|
36 |
+
from diffusers import AutoPipelineForText2Image
|
37 |
+
import torch
|
38 |
+
|
39 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
40 |
+
pipeline.load_lora_weights('AlekseyCalvin/Chimot_Edouard_style_FluxLoRA_bySilverAgePoets')
|
41 |
+
image = pipeline('your prompt').images[0]
|
42 |
+
```
|