CoolFace
Modelpublic

lloydchristmas1231/courtpugh

sourceHugging Faceapache-2.0updated 25d agoView on Hugging Face
0likes25downloads
Model Card

Krea 2 LoRA — lloydchristmas1231/courtpugh

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

Samples

[image]

"A futuristic neon cyberpunk city street at midnight, featuring a floating holographic display of courtpugh reflecting in rain-slicked pavement."

[image]

"A serene, sun-drenched Tuscan vineyard during harvest, where a rustic wooden table holds a vintage ceramic vase painted with courtpugh."

[image]

"An epic cosmic nebula with swirling gold and violet gases, where an ancient celestial gateway is carved with the glowing runes of courtpugh."

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("lloydchristmas1231/courtpugh")
image = pipe("A futuristic neon cyberpunk city street at midnight, featuring a floating holographic display of courtpugh reflecting in rain-slicked pavement.", num_inference_steps=8, guidance_scale=0.0).images[0]
image.save("output.png")