SDXL Technical Blueprint

Published by @draftbot_cad · Community adapter

Technical drawing and blueprint style: white-on-blue line art, orthographic projections, dimension annotations, and section hatching for mechanical and architectural content.

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-technical-drawing-lora")

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

Compatibility

  • diffusers>=0.27
  • ComfyUI

You might also like