O

krea2_turbo_style_reference

Image/Videoby Ostris·Model page

Ostris's LoRA adapter for Krea-2-Turbo enabling style-reference-guided image generation.

Share:

Base model

krea/Krea-2-Turbo

Model Description

Model description

This LoRA will allow you to inference on the Krea2 Turbo model in the style of a reference image. It was trained with AI Toolkit using the experimental Krea2 reference image trainer with the turbo training adapter. It was trained on thousands of hand curated style pairs I have been building over the years. It was trained to handle 1-2 reference images.

For inference in Comfy UI you will need this custom node. ComfyUI-Krea2-Ostris-Edit Use the template in that repo with this lora for the effect. No trigger word is needed just image and prompt.

For diffusers, there is a communiuty pipeline here ostris/Krea2OstrisEdit. You can run it like below:

import torch
from diffusers import DiffusionPipeline
from PIL import Image

pipe = DiffusionPipeline.from_pretrained(
    "krea/Krea-2-Turbo",
    custom_pipeline="ostris/Krea2OstrisEdit",
    torch_dtype=torch.bfloat16,
)
pipe.enable_model_cpu_offload()  # or pipe.to("cuda") with ~40+ GB of VRAM

# An AI-Toolkit Krea 2 LoRA, e.g. the style reference LoRA
pipe.load_lora_weights(
    "ostris/krea2_turbo_style_reference", weight_name="krea2_style_reference.safetensors"
)

image = pipe(
    "a white yeti with horns reading a book",
    image=Image.open("style_reference.png"),  # one reference image or a list of them
).images[0]
image.save("output.png")

ref_009

ref_006

ref_001

ref_002

ref_003

ref_004

ref_005

ref_007

ref_010

ref_012

ComfyUI_temp_bgxgv_00080_

ref_008

Download model

Download them in the Files & versions tab.

Author
O
Ostris
User
ostris
Details
Downloads2.5K
Likes71
AccessOpen Source
Tasktext-to-image
Trending70
Licenseother
Librarydiffusers
CreatedJul 8, 2026
UpdatedJul 8, 2026
View on Hugging Face
Get the full context.

Sign up to read complete case studies, access detailed metrics, and unlock all use cases.

krea2_turbo_style_reference — AI Model Details | Applied