Diffusers How to use lenML/DeepNegativeXL with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("lenML/DeepNegativeXL", dtype=torch.bfloat16, device_map="cuda")
prompt = "vampire bride,film photography aesthetic,the delicate texture of lace veil gently obscuring her face,long blonde hair,looking at viewer,eye eye contact,sapphire red eyes,choker,devil smile,dynamic composition,skin texture,from above,close-up,sharp focus,horror \\(theme\\),dutch angle,"
image = pipe(prompt).images[0]