AlekseyCalvin commited on
Commit
f5a746d
·
verified ·
1 Parent(s): 5206fef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -3
README.md CHANGED
@@ -1,3 +1,78 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - flux
7
+ - diffusers
8
+ - lora
9
+ - replicate
10
+ - woodcut
11
+ - avantgarde
12
+ - SilverAgePoets
13
+ - Soviet
14
+ - art-style
15
+ - image-generation
16
+ - flux-diffusers
17
+ - diffusers
18
+ - dedistilled
19
+ - de-distilled
20
+ - DrawThings
21
+ - PEFT
22
+ - photo
23
+ - realism
24
+ - Surrealism
25
+ - illustration
26
+ - experimental
27
+ - character
28
+ - historical person
29
+ - poetry
30
+ - literature
31
+ - history
32
+ - archival
33
+ base_model: black-forest-labs/FLUX.1-dev
34
+ pipeline_tag: text-to-image
35
+ library_name: diffusers
36
+ emoji: 🔜
37
+ instance_prompt: Serebryakova style oil painting by the Soviet artist Zinaida Serebryakova
38
+ widget:
39
+ - text: >-
40
+ Nikolay Kupreyanov style woodcut etching illustration art. An image of an
41
+ early turret-cannon armored car moving through a city and firing. A stylized
42
+ scene from the Russian Civil War of 1919-1920. Influenced by Cubism. Thick
43
+ defined lines. Exaggerated shapes. Strong angles. Deep blacks.
44
+ output:
45
+ url: images/example_mn4kvtftq.png
46
+
47
+ ---
48
+
49
+ # Zinaida E Serebryakova FLUX LoRA Variant 2
50
+ ## By SilverAgePoets.com
51
+
52
+ For generating stylized images reminiscent of oil portraits by Serebryakova. <br>
53
+
54
+ **Find this LoRA's Alternate Variant – base FLUX.1-Dev-tuned – [AT THIS LINK](https://huggingface.co/AlekseyCalvin/serebryakova_fluxlora_var1_silveragepoets)**. <br>
55
+ **This Variant of *our Serebryakova Style LoRA* was fine-tuned over a De-Distilled Version of FLUX, at a higher rank than Var.1, but slightly fewer steps.** <br>
56
+
57
+ Our Low-Rank Adapter (LoRA) for FLUX models fine-tuned on a set of manually pre-processed & exhaustively captioned art scans... <br>
58
+ Representing a broad selection (about 70 pieces) from among the distinctive oeuvre of oil paintings by: <br>
59
+ the epochal Ukrainian-Russian-Soviet-French or, in short, World artist **Zinaida Serebryakova** *(1884 — 1967)*, who is one of the 20th century's most vividly expressive, stylistically unique, and altogether brilliant painters from life. <br>
60
+
61
+ <Gallery />
62
+ <br>
63
+
64
+ ## Trigger words
65
+ You should use `Serebryakova style oil painting by the Soviet artist Zinaida Serebryakova` or 'Serebryakova style art' to summon the artist's latent hand.
66
+
67
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
68
+
69
+ ```py
70
+ from diffusers import AutoPipelineForText2Image
71
+ import torch
72
+
73
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
74
+ pipeline.load_lora_weights('AlekseyCalvin/Serebryakova_FluxLoRA_Var2_SilverAgePoets', weight_name='serebryakova_fluxlora_1000_lora_ver2_fp16Convert.safetensors')
75
+ image = pipeline('your prompt').images[0]
76
+ ```
77
+
78
+ For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)