AlekseyCalvin
commited on
Upload README (6).md
Browse files- README (6).md +40 -0
README (6).md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: Somov style art, artwork by Konstantin Somov, detailed vibrantly carnivalesque illustration
|
15 |
+
---
|
16 |
+
## Somov's C๐๐๐โ
๐๐๐esque ๐๐พ๐ถ๐พ๐ผ๐ธ๐๐ผ
|
17 |
+
## HISTORIC ๐๐ก๐ฏ๐๐ค๐ฅ STYLE โ๐ธโ๐ด๐ด
|
18 |
+
## ||| By SilverAgePoets.com |||
|
19 |
+
|
20 |
+
A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
|
21 |
+
Fine-tuned on around 150 artworks inspired by Pierrot's lace tears, Columbina's satin gasps, Harlequin's velvet prances, by the toy moonlight of dreamed-up 18th centuries, and every achingly real rendezvous with fleeting masks of closeness... <br>
|
22 |
+
And these artworks, of course, were crafted once upon a world by: <br>
|
23 |
+
**KONSTANTIN SOMOV** *(1869-1939)*, though representing but one facet, a brightest of dreams and among the deepest, of his manifold eclectic masteries. <br>
|
24 |
+
|
25 |
+
<Gallery />
|
26 |
+
|
27 |
+
## Trigger words
|
28 |
+
You should use `Somov style art, artwork by Konstantin Somov, detailed vibrantly carnivalesque illustration ` to beckon masked truths with you into that eternal carnival garden; the one tinseled with fireworks, rainbows, moonrays, and yearning; and filled with mysteries yet-undreamed of, not even by you... <br>
|
29 |
+
|
30 |
+
|
31 |
+
## Use it with the [๐งจ diffusers library](https://github.com/huggingface/diffusers)
|
32 |
+
|
33 |
+
```py
|
34 |
+
from diffusers import AutoPipelineForText2Image
|
35 |
+
import torch
|
36 |
+
|
37 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
38 |
+
pipeline.load_lora_weights('AlekseyCalvin/Somov_GreatArtistStyle_FluxLoRA_bySilverAgePoets')
|
39 |
+
image = pipeline('your prompt').images[0]
|
40 |
+
```
|