Krea 2 LoRAs
Collection
A collection of LoRAs for Krea 2 Turbo and Krea 2 Raw • 9 items • Updated • 13
How to use krea/Krea-2-LoRA-darkbrush 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("krea/Krea-2-LoRA-darkbrush")
prompt = "two samurais in flowing robes doing a muay thai fight, one throws a high kick while the other leans back. monochrome ink wash style"
image = pipe(prompt).images[0]A LoRA for Krea 2 — darkbrush (trigger: monochrome ink wash style).
monochrome ink wash stylekrea/Krea-2-Turbo, the few-step distilled checkpoint shown in the previews above.krea/Krea-2-Raw.darkbrush.safetensors1.0.import torch
from diffusers import Krea2Pipeline
pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
pipe.transformer.load_lora_adapter("krea/Krea-2-LoRA-darkbrush", weight_name="darkbrush.safetensors")
pipe.transformer.set_adapters("default", weights=1.0)
prompt = "A deer grazing in the forest, monochrome ink wash style"
image = pipe(prompt, num_inference_steps=8, guidance_scale=0.0).images[0]
image.save("darkbrush.png")







