Downloads · 30 days
0
Moon-bow/DPoser-X
DPoser-X is a machine learning model from Moon-bow. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for pytorch. The card lists the license as cc-by-nc-4.0.
<a href="https://arxiv.org/abs/2508.00599" target="blank"<img src="https://img.shields.io/badge/arXiv-2508.00599-b31b1b.svg"</a <a href="https://github.com/careless-lu/DPoser" target="blank"<img src="https://img.shiel…
Downloads · 30 days
0
Access
Public
Updated Aug 12, 2025
Repo size
881 MB
Likes
4
Public
Click a slice to open those files.
.ckpt881 MB · 100%
From the Hugging Face model README
<a href="https://arxiv.org/abs/2508.00599" target="_blank"><img src="https://img.shields.io/badge/arXiv-2508.00599-b31b1b.svg"></a> <a href="https://github.com/careless-lu/DPoser" target="_blank"><img src="https://img.shields.io/badge/Code-GitHub-black"></a> <a href="https://dposer.github.io/" target="_blank"><img src="https://img.shields.io/badge/Project-Page-blue"></a> <a href="https://youtu.be/yzwliadFcX0" target="_blank"><img src="https://img.shields.io/badge/Demo-YouTube-red"></a>
Official model weights for DPoser-X, the first diffusion-based prior for robust 3D whole-body human pose, accepted as an Oral presentation at ICCV 2025.
DPoser-X is a diffusion-based prior designed to overcome the limitations of traditional models like VAEs and NDFs in generating realistic and diverse human poses. Our framework introduces several key innovations:
This results in a versatile and powerful prior that achieves state-of-the-art performance on 8 benchmarks for body, hand, face, and whole-body modeling.
This repository contains the weights for the different components of the DPoser-X framework. The file paths in this repository correspond to the structure required by the official code.
body/BaseMLP/last.ckpthand/BaseMLP/last.ckptface/BaseMLP/last.ckptface_shape/BaseMLP/last.ckptwholebody/mixed/last.ckptAll files can be found in the Files and versions tab.
For the full implementation and instructions, please see our official GitHub repository: https://github.com/careless-lu/DPoser.
To use the pretrained models from this hub, you can use the huggingface_hub library to download the files into the correct directory structure within your local pretrained_models folder.
Example: Using the Terminal (Downloads all models at once)
Make sure you have huggingface-hub installed (pip install huggingface-hub). Then run the following command from your terminal:
huggingface-cli download Moon-bow/DPoser-X --repo-type model --local-dir pretrained_models --local-dir-use-symlinks False
This command will download the entire repository contents into a local folder named pretrained_models, preserving the required directory structure. You can then proceed with the instructions in our GitHub repository.
Example: Within Python Code (Automatic Download)
You can also use the huggingface_hub library to download the models programmatically:
from huggingface_hub import snapshot_download, hf_hub_download
# download entire repo
filepath = snapshot_download(repo_id="Moon-bow/DPoser-X")
# download one file
filepath = hf_hub_download(repo_id="Moon-bow/DPoser-X", filename="body/BaseMLP/last.ckpt")
If you find our work useful, please cite our paper:
@article{lu2025dposerx,
title={DPoser-X: Diffusion Model as Robust 3D Whole-body Human Pose Prior},
author={Lu, Junzhe and Lin, Jing and Dou, Hongkun and Zeng, Ailing and Deng, Yue and Liu, Xian and Cai, Zhongang and Yang, Lei and Zhang, Yulun and Wang, Haoqian and Liu, Ziwei},
journal={arXiv preprint arXiv:2508.00599},
year={2025}
}