CoolFace
Modelpublic

mju75/klara-lora-weights

sourceHugging Faceapache-2.0updated 24d agoView on Hugging Face
0likes15downloads
Model Card

Krea 2 LoRA — mju75/klara-lora-weights

<Gallery />

A DreamBooth-LoRA for Krea 2, trained on Krea 2 RAW and shown on Krea 2 Turbo. The samples below were generated with this LoRA on Turbo (8 steps).

Trigger

Use the token kl4ra to invoke the concept.

Samples

[image]

"A futuristic cyberpunk street in Tokyo drenched in neon rain, featuring kl4ra as a holographic entity floating above a crowded intersection."

[image]

"A serene, sun-drenched Mediterranean garden with white marble statues, where kl4ra is lounging in a linen dress reading an ancient scroll."

[image]

"A gritty, cinematic wide shot of a desolate Martian colony, showing kl4ra wearing a weathered spacesuit while staring at a distant dust storm."

Use it with diffusers

py
import torch
from diffusers import Krea2Pipeline

pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
pipe.load_lora_weights("mju75/klara-lora-weights")
image = pipe("A futuristic cyberpunk street in Tokyo drenched in neon rain, featuring kl4ra as a holographic entity floating above a crowded intersection.", num_inference_steps=8, guidance_scale=0.0).images[0]
image.save("output.png")