smplx
PyTorch module for loading the SMPLX body model
What it is and what it does
SMPL-X is a PyTorch module that loads and evaluates a parametric 3D human body model jointly trained for the body, face, and hands. It represents human shape and pose using learned blend shapes and linear blend skinning, with 10,475 vertices and 54 joints including the neck, jaw, eyeballs, and fingers. The model is defined by pose parameters (θ), shape parameters (β), and facial expression parameters (ψ).
The package provides loaders for multiple related models: SMPL-X (full body with face and hands), SMPL+H (body with detailed hands), SMPL (body only), and MANO (hands only). It requires manual download of model files from the project website and is designed for research applications in 3D human reconstruction, pose estimation, and body animation. The package depends on numpy and torch.
Use it for:
- Reconstruct 3D human body, face, and hand geometry from pose and shape parameters in computer vision research.
- Generate synthetic 3D human data for training pose estimation or body shape prediction models.
- Visualize and manipulate human pose and facial expressions in 3D graphics or animation pipelines.
- Transfer pose parameters between different body models (SMPL, SMPL+H, SMPL-X) for cross-model compatibility.
- Extract vertex correspondences between SMPL-X and related models for hand and face analysis.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Loads and manipulates SMPL-X, a unified 3D body model with 10,475 vertices and 54 joints that jointly represents the human body, face, and hands using PyTorch.
Yes, but with strong caveats. Install if you need SMPL-X for academic research and can work around its abandonment. The package itself installs cleanly with low friction, has no known vulnerabilities, and sees regular downloads. However, it has received no updates since 2021-05-26, so expect no support for newer PyTorch or Python versions, no bug fixes, and no maintenance. The non-commercial license also restricts use to research only. Suitable only for researchers who can maintain their own fork if needed.
Install
smplx on PyPI
pip
pip install smplxuv
uv add smplxpoetry
poetry add smplxInstalling smplx
Before you install
Low friction installation via pip. The package depends on numpy and torch, both widely available. However, the project has been abandoned since its last release on 2021-05-26, so expect no maintenance, bug fixes, or support for newer PyTorch or Python versions.
License in practice
Licensed for non-commercial scientific research only. Commercial use, redistribution, or any use outside academic research is prohibited. You must read and agree to the license terms before downloading or using the model files.
Quickstart
pip install smplx[all]
import torch
from smplx import SMPLX
model = SMPLX(model_path='path/to/model', gender='neutral')
body_pose = torch.zeros(1, 63)
output = model(betas=torch.zeros(1, 10), body_pose=body_pose)
Model files (.pkl or .npz) must be downloaded separately from https://smpl-x.is.tuebingen.mpg.de after registration; they are not included in the package.
Verify before relying
- Whether the package works with PyTorch versions released after 2021 without modification.
- Current compatibility with Python 3.10+ given the project's abandonment status.
- Whether the model files remain available for download from the official website.
- Exact number of joints and their configuration across different model variants.
Package facts
| License | not declared (unclear) |
| Python support | supports the current Python release (>=3.6.0) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — numpy, torch |
| Maintenance | abandoned — 1,906 days since the last release |
| First released | |
| Downloads | 131,352/month — #11,594 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: smplx-0.1.28-py3-none-any.whl
Tags
More Artificial Intelligence packages
LiteLLM provides a unified Python interface to…
permissive · top 100 on PyPI
huggingface-hubClient library and CLI tool for downloading,…
permissive · top 100 on PyPI
langchainLangChain provides a framework for building…
permissive · top 1,000 on PyPI
hf-xethf-xet provides chunk-based deduplication and…
permissive · top 1,000 on PyPI
tokenizersTokenizers converts raw text into token…
permissive · top 1,000 on PyPI
transformersTransformers provides a unified framework for…
permissive · top 1,000 on PyPI
dex-retargetingTranslates human hand motion to robot hand…
permissive · top 15,000 on PyPI
face-alignmentDetects 2D and 3D facial landmarks from images…
permissive · top 15,000 on PyPI
face_recognition_modelsProvides pre-trained deep learning models for…
permissive · top 15,000 on PyPI
facexlibFacexlib provides a collection of PyTorch-based…
permissive · top 5,000 on PyPI
pipablepytorch3dPyTorch3D provides reusable components for 3D…
permissive · top 5,000 on PyPI
mtcnnDetects faces and facial landmarks (eyes, nose,…
permissive · top 5,000 on PyPI
deepfaceDeepFace performs face recognition,…
permissive · top 15,000 on PyPI
facenet-pytorchProvides pretrained PyTorch models for face…
permissive · top 15,000 on PyPI
retina-faceDetects faces in images and extracts facial…
permissive · top 15,000 on PyPI