text-to-image stable-diffusion diffusers

Pixel Party XL

This is a full model training for better pixel art adherence based on SDXL. Feel free to use this model for your own projects, but please do not host it.

examples

We are building on tools for indie game development and currently have tools for:

And have much more planned! :D

If you want to support us or check out our other pixel art models, you can find us here PixelLab or on Discord.

How to use

Diffusers

from diffusers import DiffusionPipeline, UNet2DConditionModel
import torch

pipe = DiffusionPipeline.from_pretrained(
    "stabilityai/stable-diffusion-xl-base-1.0",
    torch_dtype=torch.float16,
    unet=UNet2DConditionModel.from_pretrained("pixelparty/pixel-party-xl", torch_dtype=torch.float16),
    use_safetensors=True,
    variant="fp16",
)
pipe.to("cuda")

torch.manual_seed(11215)
prompt = "cute dragon. in pixel art style"
negative_prompt = "mixels. amateur. multiple"

image = pipe(prompt, negative_prompt=negative_prompt, num_inference_steps=25).images[0]

License

Please do not host this model. It is otherwise licensed under CreativeML-OpenRail-M.