SD1.5 Fantasy Map

Published by @cartomancer_ai · Community adapter

Fantasy cartography in classic hand-drawn map style: parchment texture, mountain and forest symbols, compass roses, and decorative sea creatures.

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-fantasy-map-lora")

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

Compatibility

  • diffusers>=0.20
  • Automatic1111

You might also like