Skip to content

facebookresearch/sapiens

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Sapiens

Foundation for Human Vision Models

Rawal Khirodkar Β· Timur Bagautdinov Β· Julieta Martinez Β· Su Zhaoen Β· Austin James
Peter Selednik . Stuart Anderson . Shunsuke Saito

ECCV 2024 (Oral)

Project Page Paper PDF Spaces Results

Sapiens offers a comprehensive suite for human-centric vision tasks (e.g., 2D pose, part segmentation, depth, normal, etc.). The model family is pretrained on 300 million in-the-wild human images and shows excellent generalization to unconstrained conditions. These models are also designed for extracting high-resolution features, having been natively trained at a 1024 x 1024 image resolution with a 16-pixel patch size.

01 03

02 04

πŸš€ Getting Started

Clone the Repository

git clone https://github.com/facebookresearch/sapiens.git
export SAPIENS_ROOT=/path/to/sapiens

Recommended: Lite Installation (Inference-only)

For users setting up their own environment primarily for running existing models in inference mode, we recommend the Sapiens-Lite installation.
This setup offers optimized inference (4x faster) with minimal dependencies (only PyTorch + numpy + cv2).

Full Installation

To replicate our complete training setup, run the provided installation script.
This will create a new conda environment named sapiens and install all necessary dependencies.

cd $SAPIENS_ROOT/_install
./conda.sh

Please download the original checkpoints from hugging-face.
You can be selective about only downloading the checkpoints of interest.
Set $SAPIENS_CHECKPOINT_ROOT to be the path to the sapiens_host folder. Place the checkpoints following this directory structure:

sapiens_host/
β”œβ”€β”€ detector/
β”‚   └── checkpoints/
β”‚       └── rtmpose/
β”œβ”€β”€ pretrain/
β”‚   └── checkpoints/
β”‚       β”œβ”€β”€ sapiens_0.3b/
            β”œβ”€β”€ sapiens_0.3b_epoch_1600_clean.pth
β”‚       β”œβ”€β”€ sapiens_0.6b/
            β”œβ”€β”€ sapiens_0.6b_epoch_1600_clean.pth
β”‚       β”œβ”€β”€ sapiens_1b/
β”‚       └── sapiens_2b/
β”œβ”€β”€ pose/
   └── checkpoints/
      β”œβ”€β”€ sapiens_0.3b/
└── seg/
└── depth/
└── normal/

🌟 Human-Centric Vision Tasks

We finetune sapiens for multiple human-centric vision tasks. Please checkout the list below.

🎯 Easy Steps to Finetuning Sapiens

Finetuning our models is super-easy! Here is a detailed training guide for the following tasks.

πŸ“ˆ Quantitative Evaluations

🀝 Acknowledgements & Support & Contributing

We would like to acknowledge the work by OpenMMLab which this project benefits from.
For any questions or issues, please open an issue in the repository.
See contributing and the code of conduct.

License

This project is licensed under LICENSE.
Portions derived from open-source projects are licensed under Apache 2.0.

πŸ“š Citation

If you use Sapiens in your research, please consider citing us.

@misc{khirodkar2024_sapiens,
    title={Sapiens: Foundation for Human Vision Models},
    author={Khirodkar, Rawal and Bagautdinov, Timur and Martinez, Julieta and Zhaoen, Su and James, Austin and Selednik, Peter and Anderson, Stuart and Saito, Shunsuke},
    year={2024},
    eprint={2408.12569},
    archivePrefix={arXiv},
    primaryClass={cs.CV},
    url={https://arxiv.org/abs/2408.12569}
}