SD1.5 Anime Background

Published by @bg_artisan · Community adapter

Anime environment backgrounds: painted sky gradients, detailed foliage, atmospheric perspective, and the warm lighting characteristic of hand-painted cel animation.

Usage

from diffusers import DiffusionPipeline
import torch

pipe = DiffusionPipeline.from_pretrained(
    "runwayml/stable-diffusion-v1-5",
    torch_dtype=torch.float16,
).to("cuda")
pipe.load_lora_weights("modelforgelab/sd15-anime-background-lora")

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

Compatibility

  • diffusers>=0.20
  • Automatic1111
  • ComfyUI

You might also like