Model reference · open weights
SD_PixelArt_SpriteSheet_Generator is an open-weight image model from Onodofthenorth. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | Onodofthenorth |
|---|---|
| Type | Image models |
| Task | Text→image |
| Runs with | diffusers |
| Released | 2022-11-01 |
| Popularity | 3k downloads / month |
| Licence | Open weights |
About
This Stable diffusion checkpoint allows you to generate pixel art sprite sheets from four different angles. These first images are my results after merging this model with another model trained on my wife. merging another model with this one is the easiest way to get a consistent character with each view. still requires a bit of playing around with settings in img2img to get them how you want. for left and right, I suggest picking your best result and mirroring. after you are satisfied take your photo into photoshop or Krita, remove the background, and scale to the desired size. after this you can scale back up to display your results; this also clears up some of the color murkiness in the initial outputs.
This model can be used just like any other Stable Diffusion model. For more information, please have a look at the Stable Diffusion.
You can also export the model to ONNX, MPS and/or FLAX/JAX.
#!pip install diffusers transformers scipy torch
from diffusers import StableDiffusionPipeline
import torch
model_id = "Onodofthenorth/SD_PixelArt_SpriteSheet_Generator"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "PixelartLSS"
image = pipe(prompt).images[0]
image.save("./pixel.png")
For the front view use "PixelartFSS"
For the right view use "PixelartRSS"
For the back view use "PixelartBSS"
For the left view use "PixelartLSS"
These are random results from the unmerged model
here's a result from a merge with my Hermione model
here's a result from a merge with my cat girl model
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys sd-pixelart-spritesheet-generator for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (sd-pixelart-spritesheet-generator below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/images/generations \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"sd-pixelart-spritesheet-generator","prompt":"a red bicycle","size":"1024x1024"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.