Instructions to use ilkerzgi/krea-2-vintage-risograph-poster-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ilkerzgi/krea-2-vintage-risograph-poster-lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("krea/Krea-2-Turbo", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("ilkerzgi/krea-2-vintage-risograph-poster-lora") prompt = "a lighthouse on a rocky cliff. vintage risograph poster style" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Vintage Risograph Poster
fal · Krea 2 Style LoRA series. One of 1600+ style LoRAs trained on fal.
A Krea 2 style LoRA. Add the trigger vintage risograph poster style to the end of your prompt.

- Prompt
- a lighthouse on a rocky cliff. vintage risograph poster style

- Prompt
- a lighthouse on a rocky cliff. vintage risograph poster style

- Prompt
- a lighthouse on a rocky cliff. vintage risograph poster style
Quick start
| Parameter | Value |
|---|---|
| Trigger | vintage risograph poster style |
| Recommended LoRA scale | 1.0 to 1.25 |
| Base model | krea/Krea-2-Turbo |
| Trained on | fal-ai/krea-2-trainer |
Inference on fal
Python
import fal_client
result = fal_client.subscribe(
"fal-ai/krea-2/turbo/lora",
arguments={
"prompt": "a lighthouse on a rocky cliff. vintage risograph poster style",
"loras": [{"path": "https://huggingface.co/ilkerzgi/krea-2-vintage-risograph-poster-lora/resolve/main/vintage-risograph-poster.safetensors", "scale": 1.0}],
"image_size": {"width": 1024, "height": 1280},
},
)
print(result["images"][0]["url"])
JavaScript
import { fal } from "@fal-ai/client";
const { data } = await fal.subscribe("fal-ai/krea-2/turbo/lora", {
input: {
prompt: "a lighthouse on a rocky cliff. vintage risograph poster style",
loras: [{ path: "https://huggingface.co/ilkerzgi/krea-2-vintage-risograph-poster-lora/resolve/main/vintage-risograph-poster.safetensors", scale: 1.0 }],
image_size: { width: 1024, height: 1280 },
},
});
console.log(data.images[0].url);
Train your own on fal
Every LoRA in this series is trained on fal-ai/krea-2-trainer (100 steps, learning rate 3.5e-4). Train your own style from 4 to 10 reference images:
import fal_client
result = fal_client.subscribe(
"fal-ai/krea-2-trainer",
arguments={
"images_data_url": "https://.../your-dataset.zip",
"trigger_phrase": "vintage risograph poster style",
"steps": 100,
"learning_rate": 0.00035,
},
)
print(result)
License
Krea 2 Community License. See the license.
- Downloads last month
- -