Views
No views yet
| File | Model | Params |
|---|---|---|
tokenizer/split_branch_sem.pt | SeMoCo tokenizer | 22.9M |
tokenizer/ablation/ | Tokenizer ablation variants (split-branch / single-chain, ± semantic) | ~22M |
generator/lite.pt | Ours-Lite T2M generator | 188M |
generator/base.pt | Ours-Base T2M generator | 391M |
generator/prior_lite.pt | Lite unconditional motion prior | 199M |
generator/prior_base.pt | Base unconditional motion prior | 419M |
codec_config + net + norm);
generator checkpoints contain model + model_config, plus data_meta
describing the text encoder for the text-to-motion ones. Optimizer states are
stripped. The motion priors take no text conditioning and are only needed for
the prediction benchmark.| Model | Headline results |
|---|---|
| SeMoCo tokenizer | MPJPE 12.83 mm / PA-MPJPE 11.07 mm (SMPL-22, symmetric-FK protocol); codebook usage 100%, perplexity 998, 198.4 tokens/s |
| Ours-Lite (T2M) | FID .186, R@1 .484, MedR 1.70 |
| Ours-Base (T2M) | FID .181, R@1 .494, MedR 1.50 |
1# tokenizer only
2hf download poisonousID/SeMoCo --include 'tokenizer/*' --local-dir checkpoints/
3
4# generators and motion priors
5hf download poisonousID/SeMoCo --include 'generator/*' --local-dir checkpoints/test.txt and the recordings root from the released dataset:1python -m tools.eval_recon_smpl22 \
2 --checkpoint checkpoints/tokenizer/split_branch_sem.pt \
3 --manifest data/test.txt --recordings-root data/recordings \
4 --out recon_smpl22.json1@article{semoco,
2 title = {SeMoCo: A Semantic-First Motion Codec for Motion Language Modeling},
3 author = {OMEGA-team},
4 journal = {arXiv preprint},
5 year = {2026}
6}