AlekseyCalvin commited on
Commit
e77db95
ยท
verified ยท
1 Parent(s): ee8191c

Upload README (6).md

Browse files
Files changed (1) hide show
  1. 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
+ ```