SDXL Horror Illustration

Published by @eldritch_studio · Community adapter

Horror illustration style trained on vintage pulp covers and modern horror concept art. Strong on body horror, cosmic dread, and claustrophobic shadow use.

Usage

from diffusers import DiffusionPipeline
import torch

pipe = DiffusionPipeline.from_pretrained(
    "stabilityai/stable-diffusion-xl-base-1.0",
    torch_dtype=torch.float16,
).to("cuda")
pipe.load_lora_weights("modelforgelab/sdxl-horror-lora")

image = pipe("your prompt here").images[0]
image.save("output.png")

Compatibility

  • diffusers>=0.27
  • ComfyUI
  • Automatic1111

You might also like