CoolFace
Modelpublic

xpamelax/pamall-krea2-hf

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes9downloads
Model Card

Krea 2 LoRA — xpamelax/pamall-krea2-hf

<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 vlk woman to invoke the concept.

Samples

[image]

"A cinematic shot of a vlk woman wearing iridescent armor, standing amidst a neon-drenched cyberpunk cityscape during a rainstorm."

[image]

"An oil painting of a vlk woman in flowing linen robes, reading an ancient leather-bound tome in a sunlit medieval library."

[image]

"A macro photography shot of a tiny vlk woman exploring a lush jungle of giant mushrooms and glowing flora in a fantasy realm."

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("xpamelax/pamall-krea2-hf")
image = pipe("A cinematic shot of a vlk woman wearing iridescent armor, standing amidst a neon-drenched cyberpunk cityscape during a rainstorm.", num_inference_steps=8, guidance_scale=0.0).images[0]
image.save("output.png")