Diffusers How to use KappaNeuro/mark-catesby-style with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("KappaNeuro/mark-catesby-style")
prompt = "Mark Catesby Style - A Great Hornbill in the center of a circular circle with twin horns, presented in a vintage graphic design style, light orange in color, featuring portraiture iconography, conveying a sense of balance and harmony, characterized by rounded forms and incorporating Egyptian imagery symbols, with a strong facial expression."
image = pipe(prompt).images[0]