AlekseyCalvin
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,70 @@
|
|
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 |
+
- image-generation
|
11 |
+
- flux-diffusers
|
12 |
+
- diffusers
|
13 |
+
- photo
|
14 |
+
- realism
|
15 |
+
- Surrealism
|
16 |
+
- illustration
|
17 |
+
- experimental
|
18 |
+
- character
|
19 |
+
- historical person
|
20 |
+
- poetry
|
21 |
+
- literature
|
22 |
+
- history
|
23 |
+
- archival
|
24 |
+
base_model: black-forest-labs/FLUX.1-dev
|
25 |
+
pipeline_tag: text-to-image
|
26 |
+
library_name: diffusers
|
27 |
+
emoji: 🔜
|
28 |
+
instance_prompt: >-
|
29 |
+
APSIT style Soviet revolutionary illustration
|
30 |
+
widget:
|
31 |
+
- text: >-
|
32 |
+
APSIT style Soviet revolutionary illustration of rebelling cat in a suit screaming at monstrous mutant policemen during a street battle in San Francisco, red title text at the top: "END EMPIRE! END DEAD ERAS' RX!"
|
33 |
+
output:
|
34 |
+
url: apsit_style_1.png
|
35 |
+
- text: >-
|
36 |
+
APSIT style APSIT style Soviet revolutionary illustration of rebelling proletarians APSIT style Soviet revolutionary illustration of a revolutionary sailor on the left and a Ukrainian cossack on the right tying up and capturing a flabby green monster whose name is "CAPITAL": title text atop
|
37 |
+
output:
|
38 |
+
url: capital1.png
|
39 |
+
- text: >-
|
40 |
+
APSIT style Soviet revolutionary illustration of rebelling proletarians bringing down the pillars of global Capital, upon which sits a bulging massive many limbed chimeric monster with the crown of a tzar, a fat flabby body, many limbs armed with deadly weapons, a beastly head, and a serpent's tail. Yet, the rebels prevail, and though many among them are massacred, some succeed un shattering the foundations of Capital and its ghastly overlord! Caption on the stone monument being destroyed reads: “CAPITAL"
|
41 |
+
output:
|
42 |
+
url: apsit_style_2.png
|
43 |
+
|
44 |
+
---
|
45 |
+
|
46 |
+
# Alexander Apsit FLUX LoRA for Posters, Illustrations, Book Covers, Collage art, Pamphlets, and more. By SilverAgePoets.com
|
47 |
+
|
48 |
+
Our Low-Rank Adapter (LoRA) for FLUX models, fine-tuned on the distinctive c.1910s-1920s early Soviet poster illustrations by: <br>
|
49 |
+
the artist **Alexander Apsit** (1880-1944). <br>
|
50 |
+
|
51 |
+
Trained via LiuLiu's PEFT+Tensorflow-based trainer built into the DrawThings app. <br>
|
52 |
+
Cosine annealing scheduling with warm restarts. <br>
|
53 |
+
Only 3 epochs, 600 steps, but 128 dims/alpha, with orthogonal down layer fixing. <br>
|
54 |
+
|
55 |
+
|
56 |
+
## Trigger words
|
57 |
+
You should use `APSIT style` or 'APSIT style Soviet revolutionary illustration' to summon the artist's latent hand.
|
58 |
+
|
59 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
60 |
+
|
61 |
+
```py
|
62 |
+
from diffusers import AutoPipelineForText2Image
|
63 |
+
import torch
|
64 |
+
|
65 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
66 |
+
pipeline.load_lora_weights('AlekseyCalvin/Alexander_Apsit_Style_Art_FLUX_LoRa_By_SilverAgePoets_DrawThingsTrainedOnDeDistilled', weight_name='NeuroTransposedCollageLoRA_Scaled1.5_2.safetensors')
|
67 |
+
image = pipeline('your prompt').images[0]
|
68 |
+
```
|
69 |
+
|
70 |
+
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)
|