How to use KappaNeuro/dark-fantasy 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/dark-fantasy") prompt = "Dark Fantasy - a dark fantasy castle with high towers and pinnacles. The walls are ruined and cracked. At the center ther is a massive gothic tower. The castle is surrounded by a grim forest, and swarms of bats. The sky is dark and the night is dark. Fantasy. Dark. Black." image = pipe(prompt).images[0]