Skip to content

Latest commit

 

History

History
executable file
·
52 lines (42 loc) · 2.01 KB

README.md

File metadata and controls

executable file
·
52 lines (42 loc) · 2.01 KB

Social Motion Prediction with Cognitive Hierarchies (NeurIPS 2023)

Project Page YouTube video

This is the official PyTorch implementation of the paper "Social Motion Prediction with Cognitive Hierarchies" (NeurIPS 2023).

Dependencies

Dataset

Please refer to Wusi Basketball Training Dataset.

Train

python train.py \
--config configs/wusi_ch.yaml \
--train

Test

python train.py \
--config configs/wusi_ch.yaml \
--eval --ckpt checkpoint/wusi_ch/best.pth

You can download the pretrained model weight from here.

Citation

If you find our work useful for your project, please cite the paper:

@inproceedings{zhu2023social,
    title={Social Motion Prediction with Cognitive Hierarchies},
    author={Zhu, Wentao and Qin, Jason and Lou, Yuke and Ye, Hang and Ma, Xiaoxuan and Ci, Hai and Wang, Yizhou},
    booktitle={Thirty-seventh Conference on Neural Information Processing Systems},
    year={2023}
}

Acknowledgement

This repo is built on MRT. The motion capture algorithm is based on Faster-VoxelPose. Thank the authors for releasing their codes.