Diffusers How to use ottopilot/VampireFangs with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("ottopilot/VampireFangs")
prompt = "Comic book art, candid, Barbara Gordon, Batgirl, vampire, fangs, (white skin:1.1), long auburn hair, hypnotic (yellow:0.3) eyes, purple costume, (bloody mouth and clothing:1.2), highly detailed, art by Adam Hughes and Bryan Hitch, outdoors, night, Gotham City, blood red moon, gothic horror theme, ominous, corruption, bloodlust, heroine turned evil <lora:LORA-XenoDetailer-v3A:0.3> <lora:VampireFangs_v1.1:1>"
image = pipe(prompt).images[0]