CommonCanvas Demo

CommonCanvas suite of models trained on CommonCatalogue, ~70M Creative Commons images.

1 9007199254740991

The CommonCanvas S and CommonCanvas XL collections are drop-in replacements of Stable Diffusion 2 and Stable Diffusion XL respectively and can be used as such with diffusers or in UIs such as ComfyUI, AUTOMATIC1111, SDNext, InvokeAI, etc.

Using it with diffusers

from diffusers import AutoPipelineForText2Image
pipe = AutoPipelineForText2Image.from_pretrained(
    "common-canvas/CommonCanvasXL-C", #here you can pick between all models
    custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance",
    torch_dtype=torch.float16
).to(device)

prompt = "a cat"
image = pipe(prompt, num_inference_steps=25).images[0]    

Using it ComfyUI/Automatic1111