Diffusers How to use Clybius/chroma-loras with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("lodestones/Chroma", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Clybius/chroma-loras")
prompt = "A mspaint style image of Joe Biden sitting in a chair. He is learning forwards and looking at the viewer with a determined facial expression. He is squinting his eyes with his mouth closed. There is a speech bubble caption that reads \"Can you lock the fuck in, Jack?\". mspaint style."
image = pipe(prompt).images[0]