dancing-chibi-figures-ddpm-64

Why this model exists: it is the answer sheet for learning image generation on sprited/dancing-chibi-figures. The dataset is meant to be the first dataset you ever train a diffusion model on — and this checkpoint is what you get when you follow the standard 🤗 diffusers recipe on it, with nothing clever added: the official unconditional-training tutorial architecture (UNet2DModel + DDPMScheduler, squaredcos, EMA), 30k steps, ~71M params. If your run looks like the grid below, you did it right. It doubles as proof that the dataset trains cleanly with textbook code, and as the unconditional floor that the conditional models (text-to-image, video) are measured against.

One small twist worth knowing: it diffuses 4-channel premultiplied RGBA directly (no VAE) — the model learns the transparent background as part of the image.

from diffusers import DDPMPipeline
pipe = DDPMPipeline.from_pretrained("sprited/dancing-chibi-figures-ddpm-64").to("cuda")
img = pipe(batch_size=16, num_inference_steps=50).images   # PIL images (RGBA — transparent background included)

Training script (deliberately mirrors the official diffusers unconditional-training tutorial): train_diffusers/train_ddpm.py. Want text control? See sprited/dancing-chibi-figures-t2i-64. Made by Sprited.

Downloads last month
14
Safetensors
Model size
71.4M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train sprited/dancing-chibi-figures-ddpm-64