File size: 1,773 Bytes
bf527dd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
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: Somov style art, artwork by Konstantin Somov, detailed vibrantly carnivalesque illustration 
---
## Somov's C๐•’๐“‡๐“ƒโ…ˆ๐“‹๐”ž๐“esque ๐“›๐’พ๐’ถ๐’พ๐“ผ๐“ธ๐–“๐“ผ 
## HISTORIC ๐’œ๐“ก๐’ฏ๐š’๐•ค๐•ฅ STYLE โ„’๐“ธโ„œ๐ด๐˜ด
## ||| By SilverAgePoets.com |||

A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
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>
And these artworks, of course, were crafted once upon a world by: <br>
**KONSTANTIN SOMOV** *(1869-1939)*, though representing but one facet, a brightest of dreams and among the deepest, of his manifold eclectic masteries. <br>

<Gallery />

## Trigger words
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>


## 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/Somov_GreatArtistStyle_FluxLoRA_bySilverAgePoets')
image = pipeline('your prompt').images[0]
```