AlekseyCalvin
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,41 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: >-
|
15 |
+
yakunchikova style art, painting by maria yakunchikova
|
16 |
+
---
|
17 |
+
## Maria Yakunvhikova Style FLUX LoRA Var.2
|
18 |
+
## ||| By SilverAgePoets.com |||
|
19 |
+
|
20 |
+
*Note: This version was produced by merging two EMA-enabled checkpoints from the same training run.*<br>
|
21 |
+
|
22 |
+
A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
|
23 |
+
Fine-tuned on around 70 paintings + drawings by the strikingly original, often eclectic, & in many ways pioneering Symbolist painter: <br>
|
24 |
+
**MARIA YAKUNCHIKOVA-WEBER** *(1880-1902)* <br>
|
25 |
+
|
26 |
+
<Gallery />
|
27 |
+
|
28 |
+
## Trigger words
|
29 |
+
You should use `yakunchikova style art, painting by maria yakunchikova` to summon for a spell out of the starry woods of who-knows-where this forever-young stylist.
|
30 |
+
|
31 |
+
|
32 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
33 |
+
|
34 |
+
```py
|
35 |
+
from diffusers import AutoPipelineForText2Image
|
36 |
+
import torch
|
37 |
+
|
38 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
39 |
+
pipeline.load_lora_weights('AlekseyCalvin/YakunchikovaMariaStyle_MergedVersion_FluxLora_BySilverAgePoets')
|
40 |
+
image = pipeline('your prompt').images[0]
|
41 |
+
```
|