This repo contains the official implementation of our paper:
AgentFormer: Agent-Aware Transformers for Socio-Temporal Multi-Agent Forecasting
Ye Yuan, Xinshuo Weng, Yanglan Ou, Kris Kitani
ICCV 2021
[website] [paper]
We have recently noticed a normalization bug in the code and after fixing it, the performance of our method is worse than the original numbers reported in the ICCV paper. For comparision, please use the correct numbers in the updated arXiv version.
pip install -r requirements.txt
python data/process_nuscenes.py --data_root <PATH_TO_NUSCENES>
agentformer_models.zip
file is downloaded, place it under the root folder of this repo and unzip it:
unzip agentformer_models.zip
This will place the models under the results
folder. Note that the pretrained models directly correspond to the config files in cfg.
Run the following command to test pretrained models for the ETH dataset:
python test.py --cfg eth_agentformer --gpu 0
You can replace eth with {hotel , univ , zara1 , zara2 } to test other datasets in ETH/UCY. You should be able to get the numbers reported in the paper as shown in this table: |
Ours | ADE | FDE |
---|---|---|---|
ETH | 0.45 | 0.75 | |
Hotel | 0.14 | 0.22 | |
Univ | 0.25 | 0.45 | |
Zara1 | 0.18 | 0.30 | |
Zara2 | 0.14 | 0.24 | |
Avg | 0.23 | 0.39 |
Run the following command to test pretrained models for the nuScenes dataset:
python test.py --cfg nuscenes_5sample_agentformer --gpu 0
You can replace 5sample with 10sample to compute all the metrics (ADE_5, FDE_5, ADE_10, FDE_10). You should be able to get the numbers reported in the paper as shown in this table: |
ADE_5 | FDE_5 | ADE_10 | FDE_10 | |
---|---|---|---|---|---|
Ours | 1.856 | 3.889 | 1.452 | 2.856 |
You can train your own models with your customized configs. Here we take the ETH dataset as an example, but you can train models for other datasets with their corresponding configs. AgentFormer requires two-stage training:
python train.py --cfg user_eth_agentformer_pre --gpu 0
python train.py --cfg user_eth_agentformer --gpu 0
Note that you need to change the pred_cfg
field in user_eth_agentformer
to the config you used in step 1 (user_eth_agentformer_pre
) and change the pred_epoch
to the VAE model epoch you want to use.
If you find our work useful in your research, please cite our paper AgentFormer:
@inproceedings{yuan2021agent,
title={AgentFormer: Agent-Aware Transformers for Socio-Temporal Multi-Agent Forecasting},
author={Yuan, Ye and Weng, Xinshuo and Ou, Yanglan and Kitani, Kris},
booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)},
year={2021}
}
Please see the license for further details.