SDXL Retro Travel Poster

Published by @retrofuture · Community adapter

Mid-century travel poster aesthetic. Limited flat colour palette, bold typography placeholders, clean horizon lines and silhouetted figures.

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-retro-poster-lora")

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

Compatibility

  • diffusers>=0.27
  • ComfyUI
  • Automatic1111

You might also like