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