---
license: apache-2.0
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
- flux
- flux dev
- flux schnell
- photo
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: photo of Достоевский, Dostoyevsky, Fyodor Dostoyevskiy
widget:
- text: >-
photo of Достоевский, Dostoyevsky, Fyodor Dostoyevskiy as the Little Princie
running over the surface of Planet Earth as seen from space, bearded, in
19th century clothes, exuberant Dostoyevsky
output:
url: images/example_o0vr41327.png
- text: >-
photo of Достоевский, Dostoyevsky, Fyodor Dostoyevskiy as the Little Prince
fleeing stepping over the surface of Planet Earth as seen from space,
bearded, in 19th century clothes, exuberant Dostoyevsky Snacking on infernos
and Chasing them down with floods, running home
output:
url: images/example_194124xwu.png
- text: >-
close up photo of bearded old ageless Достоевский, Dostoyevsky, Fyodor
Dostoyevskiy as the Little Prince snacking on infernos and Chasing them down
with floods, running home
output:
url: images/example_f3wy749yr.png
---
# Fyodor Dostoyevskiy Adapter via SilverAgePoets.com
A **Low(ish) Rank Adaptor (LoRA)** for **FLUX** Text2Image models...
## Model Description:
Adapter fine-tuned on photographs of the classic storied re-scribbler of perennial human thoughts, passions, and twists:
**Fyodor Dostoyevsky** *(b.1821 – d.1881)*
This LoRA (for once) was not directly fine-tuned by us, but **by [Maria Kornilova for Weights.com and found there-on](https://www.weights.com/loras/cm2lrzhu50acb14dqcbso87t7)**.
## Trigger Words:
To trigger or reinforce the identity-defining effect, you ought to add to your prompt some variation of phrases like: 'photo of Достоевский, Dostoyevsky, Fyodor Dostoyevskiy', etc.
## 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/Dostoyevsky_Flux_LoRA')
image = pipeline('your prompt').images[0]
```