--- base_model: - krea/Krea-2-Raw - krea/Krea-2-Turbo tags: - text-to-image - lora - diffusers - template:sd-lora - krea - krea-2 - realism - photorealism license: other license_name: krea-2-community-license license_link: https://huggingface.co/krea/Krea-2-Turbo/blob/main/LICENSE pipeline_tag: text-to-image library_name: diffusers language: - en widget: - text: "A young woman taking a selfie in front of a steamy bathroom mirror with her phone partly covering her face, soft morning light coming through a frosted window, water droplets on the glass and a white towel wrapped around her hair" output: url: images/example_01.png - text: "A barista with tattooed forearms leaning on the worn wooden counter of a tiny corner cafe holding a cup with delicate latte art, late afternoon sun streaking across shelves of mismatched mugs behind her" output: url: images/example_04.png - text: "A construction worker in a yellow hard hat and high-visibility vest drinking from a water bottle during a break on a high rooftop, the hazy city skyline stretching out behind him in the midday heat" output: url: images/example_11.png - text: "An elderly woman in a floral apron tending to potted geraniums on a narrow apartment balcony in the early morning, a metal watering can in her hand and laundry drying on a line beside her" output: url: images/example_12.png - text: "A young father carrying his sleeping toddler against his shoulder through an empty airport terminal late at night, wheeling a small suitcase behind him under cold overhead lights" output: url: images/example_14.png - text: "A woman with curly hair laughing while holding an open paperback in a cluttered secondhand bookshop, tall crowded shelves towering around her in soft warm lamplight" output: url: images/example_15.png - text: "A skateboarder sitting on a curb tying his shoe in an empty parking lot at dusk, the deep orange sky reflecting off the windows of nearby shops" output: url: images/example_16.png - text: "A mechanic in grease-stained overalls leaning under the open hood of a car in a cluttered garage, a work lamp casting hard light across the engine and his focused face" output: url: images/example_19.png --- # Krea 2 Realism LoRA A realism LoRA for **Krea 2**. It pushes Krea 2 toward natural, candid, true-to-life photography — everyday people, places, and light — without needing any "photorealistic / 8k / DSLR" style keywords. Just write a normal, descriptive sentence and let the LoRA do the rest. Trained with the [FAL Krea LoRA Trainer](https://fal.ai/models/fal-ai/krea-2/turbo) on [`krea/Krea-2-Raw`](https://huggingface.co/krea/Krea-2-Raw) and meant to be used directly on [`krea/Krea-2-Turbo`](https://huggingface.co/krea/Krea-2-Turbo) (per Krea's recommended workflow of training on Raw and running on Turbo). ## Trigger words **No trigger word is required.** Simply describe the scene in plain natural language. Longer, descriptive single-sentence prompts work best, e.g.: > *A young woman taking a selfie in front of a steamy bathroom mirror with her phone partly covering her face, soft morning light coming through a frosted window, water droplets on the glass and a white towel wrapped around her hair* ## Usage with 🤗 diffusers Install diffusers from source (for `Krea2Pipeline`): ```bash pip install git+https://github.com/huggingface/diffusers.git ``` ```python import torch from diffusers import Krea2Pipeline pipe = Krea2Pipeline.from_pretrained( "krea/Krea-2-Turbo", torch_dtype=torch.bfloat16 ).to("cuda") pipe.load_lora_weights("gokaygokay/Krea-2-Realism-LoRA") prompt = ( "A woman with curly hair laughing while holding an open paperback in a cluttered " "secondhand bookshop, tall crowded shelves towering around her in soft warm lamplight" ) image = pipe(prompt, num_inference_steps=8, guidance_scale=0.0).images[0] image.save("krea2_realism.png") ``` ## Usage with fal The LoRA can be used directly on the hosted Krea 2 Turbo endpoint by pointing to the weights: ```python import fal_client result = fal_client.subscribe( "fal-ai/krea-2/turbo/lora", arguments={ "prompt": "A barista with tattooed forearms leaning on the worn wooden counter of a tiny corner cafe holding a cup with delicate latte art, late afternoon sun streaking across shelves of mismatched mugs behind her", "loras": [{ "path": "https://huggingface.co/gokaygokay/Krea-2-Realism-LoRA/resolve/main/krea2_realism_lora.safetensors", "scale": 1.0 }], "image_size": {"width": 1280, "height": 1600}, "num_images": 1 }, ) print(result["images"][0]["url"]) ``` ## Recommended settings - **Steps:** 8 (Turbo), **guidance scale:** 0.0 - **LoRA scale:** ~1.0 (lower to ~0.7-0.8 for a subtler effect) - **Resolution:** works well at 1024-1536 on the short side; the examples below are 1280×1600 ## Examples All images below were generated on Krea 2 Turbo with this LoRA at scale 1.0, using only plain descriptive prompts (no style keywords).

A young woman taking a selfie in front of a steamy bathroom mirror with her phone partly covering her face, soft morning light coming through a frosted window, water droplets on the glass and a white towel wrapped around her hair

A barista with tattooed forearms leaning on the worn wooden counter of a tiny corner cafe holding a cup with delicate latte art, late afternoon sun streaking across shelves of mismatched mugs behind her

A construction worker in a yellow hard hat and high-visibility vest drinking from a water bottle during a break on a high rooftop, the hazy city skyline stretching out behind him in the midday heat

An elderly woman in a floral apron tending to potted geraniums on a narrow apartment balcony in the early morning, a metal watering can in her hand and laundry drying on a line beside her

A young father carrying his sleeping toddler against his shoulder through an empty airport terminal late at night, wheeling a small suitcase behind him under cold overhead lights

A woman with curly hair laughing while holding an open paperback in a cluttered secondhand bookshop, tall crowded shelves towering around her in soft warm lamplight

A skateboarder sitting on a curb tying his shoe in an empty parking lot at dusk, the deep orange sky reflecting off the windows of nearby shops

A mechanic in grease-stained overalls leaning under the open hood of a car in a cluttered garage, a work lamp casting hard light across the engine and his focused face
## Download Weights are available in [Files & versions](./tree/main) (`krea2_realism_lora.safetensors`).