End of training 65095db verified
Nicola Derespina commited on
How to use kerbitaliooo/vextharr with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("krea/Krea-2-Raw", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("kerbitaliooo/vextharr")
prompt = "A cinematic close-up of a vextharr, a bioluminescent deep-sea creature with translucent skin, drifting through a neon-colored coral reef."
image = pipe(prompt).images[0]