CoolFace
Modelpublic

krea/Krea-2-LoRA-vintagetarot

sourceHugging Faceotherupdated 3mo agoView on Hugging Face
23likes1.3kdownloads
Model Card

Krea 2 LoRA — vintagetarot

A LoRA for Krea 2 — vintagetarot (trigger: vintage tarot style).

  • —Trigger word: vintage tarot style
  • —To be used on: `krea/Krea-2-Turbo`, the few-step distilled checkpoint shown in the previews above.
  • —Trained on: `krea/Krea-2-Raw`.
  • —Weights: vintagetarot.safetensors
  • —Previews: rendered on Turbo at 8 steps, guidance 0.0, LoRA weight 1.0.

Usage

python
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-vintagetarot", weight_name="vintagetarot.safetensors")
pipe.transformer.set_adapters("default", weights=1.0)

prompt = "A deer grazing in the forest, vintage tarot style"
image = pipe(prompt, num_inference_steps=8, guidance_scale=0.0).images[0]
image.save("vintagetarot.png")

<Gallery />