Views
No views yet
ethereal motion blur style).ethereal motion blur stylekrea/Krea-2-Turbo, the few-step distilled checkpoint shown in the previews above.krea/Krea-2-Raw.sunsetblur.safetensors1.0.1import torch
2from diffusers import Krea2Pipeline
3
4pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
5pipe.transformer.load_lora_adapter("krea/Krea-2-LoRA-sunsetblur", weight_name="sunsetblur.safetensors")
6pipe.transformer.set_adapters("default", weights=1.0)
7
8prompt = "A deer grazing in the forest, ethereal motion blur style"
9image = pipe(prompt, num_inference_steps=8, guidance_scale=0.0).images[0]
10image.save("sunsetblur.png")