Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -320,6 +320,30 @@ hair, faces, props); hips-centred framing (no visible travel); ~0.3 % of frames
|
|
| 320 |
wrists invisible at ≤256 px; `prompt_mismatch` flags are heuristics; camera pitch sign follows the stick dataset
|
| 321 |
(positive = from slightly below).
|
| 322 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 323 |
## Versioning
|
| 324 |
|
| 325 |
v0.1 (2026-08) first public cut. Planned v0.2: more prompts (a curated set of ~300 from a chibi pose reference book),
|
|
|
|
| 320 |
wrists invisible at ≤256 px; `prompt_mismatch` flags are heuristics; camera pitch sign follows the stick dataset
|
| 321 |
(positive = from slightly below).
|
| 322 |
|
| 323 |
+
## Baselines & tutorial
|
| 324 |
+
|
| 325 |
+
Two tracks, both trained on `mini` (64px):
|
| 326 |
+
|
| 327 |
+
**🤗 diffusers-standard** — load with three lines, everything transfers to any diffusers project:
|
| 328 |
+
- [sprited/dancing-chibi-figures-ddpm-64](https://huggingface.co/sprited/dancing-chibi-figures-ddpm-64) — unconditional `DDPMPipeline` (UNet2DModel, 4-channel RGBA).
|
| 329 |
+
- [sprited/dancing-chibi-figures-t2i-64](https://huggingface.co/sprited/dancing-chibi-figures-t2i-64) — **text-to-image**: a miniature Stable Diffusion (UNet2DConditionModel + frozen CLIP + classifier-free guidance, no VAE).
|
| 330 |
+
|
| 331 |
+
```python
|
| 332 |
+
from diffusers import DiffusionPipeline
|
| 333 |
+
pipe = DiffusionPipeline.from_pretrained("sprited/dancing-chibi-figures-t2i-64",
|
| 334 |
+
custom_pipeline="sprited/dancing-chibi-figures-t2i-64",
|
| 335 |
+
trust_remote_code=True)
|
| 336 |
+
imgs = pipe(["a person jumps in place"] * 4, num_inference_steps=50, guidance_scale=3.0).images
|
| 337 |
+
```
|
| 338 |
+
|
| 339 |
+
**pure PyTorch** — [sprited/dancing-chibi-figures-baselines](https://huggingface.co/sprited/dancing-chibi-figures-baselines):
|
| 340 |
+
a 64px image model and a **text-conditioned autoregressive video** model (chunked diffusion, CLIP prompt embeddings);
|
| 341 |
+
trainer and `scripts/rollout.py` in the code repo. A ComfyUI node (`comfy/qversion-chibi`) wraps the image checkpoints.
|
| 342 |
+
|
| 343 |
+
**📓 Colab tutorial** — [dancing_chibi_figures_colab.ipynb](https://github.com/sprited-ai/dancing-chibi-figures/blob/main/notebooks/dancing_chibi_figures_colab.ipynb):
|
| 344 |
+
look at the data, train the text-to-image model from scratch, turn it into a video model, grade it with a counting
|
| 345 |
+
robot — free-T4-sized, written for absolute beginners. (Sequel to the stick-figures notebook.)
|
| 346 |
+
|
| 347 |
## Versioning
|
| 348 |
|
| 349 |
v0.1 (2026-08) first public cut. Planned v0.2: more prompts (a curated set of ~300 from a chibi pose reference book),
|