|
--- |
|
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: >- |
|
yakunchikova style art, painting by maria yakunchikova |
|
--- |
|
## Maria Yakunchikova Style FLUX LoRA Var.2 |
|
## ||| By SilverAgePoets.com ||| |
|
|
|
*Note: This version was produced by merging two EMA-enabled checkpoints from the same training run.*<br> |
|
|
|
A Low-Rank Adapter (LoRA) for FLUX-family models... <br> |
|
Fine-tuned on around 70 paintings + drawings by the strikingly original, often eclectic, & in many ways pioneering Symbolist painter: <br> |
|
**MARIA YAKUNCHIKOVA-WEBER** *(1880-1902)* <br> |
|
|
|
<Gallery /> |
|
|
|
## Trigger words |
|
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. |
|
|
|
|
|
## 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/YakunchikovaMariaStyle_MergedVersion_FluxLora_BySilverAgePoets') |
|
image = pipeline('your prompt').images[0] |
|
``` |
|
|