--- base_model: krea/Krea-2-Raw tags: - text-to-image - diffusers - lora - krea2 - template:sd-lora license: apache-2.0 instance_prompt: "k33l3y woman" widget: - text: "A k33l3y woman wearing holographic armor standing amidst the neon-drenched skyscrapers of a futuristic cyberpunk city during a rainstorm." output: url: sample_0.png - text: "A cinematic shot of a k33l3y woman in a flowing linen dress walking through a sun-drenched lavender field in Provence at golden hour." output: url: sample_1.png - text: "An ethereal portrait of a k33l3y woman as a celestial deity, floating in a deep space nebula surrounded by swirling cosmic dust and glowing stars." output: url: sample_2.png --- # Krea 2 LoRA — aimalias/k33l3y 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 `k33l3y woman` to invoke the concept. ## Samples ![sample](./sample_0.png) > *"A k33l3y woman wearing holographic armor standing amidst the neon-drenched skyscrapers of a futuristic cyberpunk city during a rainstorm."* ![sample](./sample_1.png) > *"A cinematic shot of a k33l3y woman in a flowing linen dress walking through a sun-drenched lavender field in Provence at golden hour."* ![sample](./sample_2.png) > *"An ethereal portrait of a k33l3y woman as a celestial deity, floating in a deep space nebula surrounded by swirling cosmic dust and glowing stars."* ## 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("aimalias/k33l3y") image = pipe("A k33l3y woman wearing holographic armor standing amidst the neon-drenched skyscrapers of a futuristic cyberpunk city during a rainstorm.", num_inference_steps=8, guidance_scale=0.0).images[0] image.save("output.png") ```