lloydchristmas1231/courtpugh
025
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
"A futuristic neon cyberpunk city street at midnight, featuring a floating holographic display of courtpugh reflecting in rain-slicked pavement."
"A serene, sun-drenched Tuscan vineyard during harvest, where a rustic wooden table holds a vintage ceramic vase painted with courtpugh."
"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
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")