DiscoNet: Learning Distilled Collaboration Graph for Multi-Agent Perception [NeurIPS 2021]
Yiming Li, Shunli Ren, Pengxiang Wu, Siheng Chen, Chen Feng, Wenjun Zhang
''Learn a digraph with matrix-valued edge weight for multi-agent perception.''
News
[2021-11] Our paper is availale on arxiv.
[2021-10] Our dataset V2X-Sim 1.0 is availale here.
[2021-09]
Abstract
To promote better performance-bandwidth trade-off for multi-agent perception, we propose a novel distilled collaboration graph (DiscoGraph) to model trainable, pose-aware, and adaptive collaboration among agents. Our key novelties lie in two aspects. First, we propose a teacher-student framework to train DiscoGraph via knowledge distillation. The teacher model employs an early collaboration with holistic-view inputs; the student model is based on intermediate collaboration with single-view inputs. Our framework trains DiscoGraph by constraining post-collaboration feature maps in the student model to match the correspondences in the teacher model. Second, we propose a matrix-valued edge weight in DiscoGraph. In such a matrix, each element reflects the inter-agent attention at a specific spatial region, allowing an agent to adaptively highlight the informative regions. During inference, we only need to use the student model named as the distilled collaboration network (DiscoNet). Attributed to the teacher-student framework, multiple agents with the shared DiscoNet could collaboratively approach the performance of a hypothetical teacher model with a holistic view. Our approach is validated on V2X-Sim 1.0, a large-scale multi-agent perception dataset that we synthesized using CARLA and SUMO co-simulation. Our quantitative and qualitative experiments in multi-agent 3D object detection show that DiscoNet could not only achieve a better performance-bandwidth trade-off than the state-of-the-art collaborative perception methods, but also bring more straightforward design rationale. Our code is available on https://github.com/ai4ce/DiscoNet.
Installation
Requirements
- Linux (tested on Ubuntu 20.04)
- Python 3.7
- PyTorch 1.8.0
- CUDA 11.2
Create Anaconda Environment
conda env create -f disco.yaml
conda activate disco
Dataset Preparation
Please download the training/val set V2X-Sim-1.0-trainval.
NOTICE: The training/val data generation script is currently not avaliable, you can either use the raw data on V2X-Sim 1.0 or the provided training/val set in your experiments. Please send us an access request with your affiliation and role, and we will grant the access.
Training Commands
python train_codet.py [--data PATH_TO_DATA] [--bound BOUND] [--com COM]
[--batch BATCH] [--nepoch NEPOCH] [--lr LEARNING_RATE]
[--kd_flag KD_FLAG] [--resume_teacher PATH_TO_TRACHER_MODEL]
--bound BOUND
Input data to the collaborative perception model. Options: "lowerbound" for
no-collaboration or intermediate-collaboration, "upperbound" for early collaboration.
--com COM
Intermediate collaboration strategy. Options: "disco" for our DiscoNet,
"v2v/when2com//sum/mean/max/cat/agent" for other methods, '' for early or no collaboration.
--data PATH_TO_DATA
Set as YOUR_PATH_TO_DATASET/V2X-Sim-1.0-trainval/train
--kd_flag FLAG
Whether to use knowledge distillation. 1 for true and 0 for false.
--resume_teacher PATH_TO_TRACHER_MODEL
The pretrained early-collaboration-based teacher model.
Evaluation Commands
python test_codet.py [--data PATH_TO_DATA] [--bound BOUND] [--com COM] [--resume PATH_TO_YOUR_MODEL]
--bound BOUND
Input data to the collaborative perception model. Options: "lowerbound" for
no-collaboration or intermediate-collaboration, "upperbound" for early collaboration.
--com COM
Intermediate collaboration strategy. Options: "disco" for our DiscoNet,
"v2v/when2com//sum/mean/max/cat/agent" for other methods, '' for early or no collaboration.
--data PATH_TO_DATA
Set as YOUR_PATH_TO_DATASET/V2X-Sim-1.0-trainval/test
--resume PATH_TO_YOUR_MODEL
The trained model for evaluation.
The teacher model can be downloaded here, and our DiscoNet model can can be downloaded here.
Acknowledgment
This project is not possible without the following great codebases.
Citation
If you find V2X-Sim 1.0 or DiscoNet useful in your research, please cite our paper.
@InProceedings{Li_2021_NeurIPS,
    title = {Learning Distilled Collaboration Graph for Multi-Agent Perception},
    author = {Li, Yiming and Ren, Shunli and Wu, Pengxiang and Chen, Siheng and Feng, Chen and Zhang, Wenjun},
    booktitle = {Thirty-fifth Conference on Neural Information Processing Systems (NeurIPS 2021)},
    year = {2021}
}