Downloads · 30 days
6
35% of all-time downloads
guillekenzo/aros-994ab152-R
aros-994ab152-R is a text-to-image model from guillekenzo. 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
6
35% of all-time downloads
All-time downloads
17
Public
Repo size
388 MB
Likes
0
Public
Click a slice to open those files.
.bin192 MB · 49%
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 ggfv person to invoke the concept.

"A photo of ggfv person on a wooden table indoors."

"A photo of ggfv person outdoors on a patch of grass."

"A close-up photo of ggfv person against a plain background."
import torch
from diffusers import Krea2Pipeline
pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
pipe.load_lora_weights("guillekenzo/aros-994ab152-R")
image = pipe("A photo of ggfv person on a wooden table indoors.", num_inference_steps=8, guidance_scale=0.0).images[0]
image.save("output.png")