Downloads · 30 days
2
4% of all-time downloads
Dzoordan/lorry
lorry is a text-to-image model from Dzoordan. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as apache-2.0.
Downloads · 30 days
2
4% of all-time downloads
All-time downloads
52
Public
Repo size
1.6 GB
Likes
0
Public
Click a slice to open those files.
.safetensors959 MB · 55%
From the Hugging Face model README
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).
Use the token Lorry to invoke the concept.

"A futuristic neon-lit cyberpunk city street where a sleek, chrome Lorry floats silently above a rain-slicked asphalt road."

"A whimsical oil painting of a miniature Lorry made of gingerbread and frosting, parked in a candy-cane forest."

"A cinematic wide shot of a rusted, overgrown Lorry reclaimed by nature in a sun-drenched post-apocalyptic jungle."
import torch
from diffusers import Krea2Pipeline
pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
pipe.load_lora_weights("Dzoordan/lorry")
image = pipe("A futuristic neon-lit cyberpunk city street where a sleek, chrome Lorry floats silently above a rain-slicked asphalt road.", num_inference_steps=8, guidance_scale=0.0).images[0]
image.save("output.png")