Views
No views yet
Deadline-Aware Collaborative Perception via Receiver-Conditioned Utility Modeling
Zhenhan Zhu, Yanchao Zhao, Yihang Jiang, Hao Han, and Jie Wu.
TMC075b2c7120277a619f41bc49a58e3905ffad7aa71.
2├── README.md
3├── LICENSE
4├── CHECKPOINT_MANIFEST.yaml
5├── SHA256SUMS
6└── models
7 ├── dair
8 │ ├── camera
9 │ │ ├── config.yaml
10 │ │ └── net_epoch_bestval_at17.pth
11 │ ├── lidar
12 │ │ ├── blindmap_quality_result.txt
13 │ │ ├── config.yaml
14 │ │ └── net_epoch_bestval_at21.pth
15 │ └── heterogeneous
16 │ ├── config.yaml
17 │ └── net_epoch_bestval_at35.pth
18 ├── opv2v
19 │ ├── camera
20 │ │ ├── config.yaml
21 │ │ └── net_epoch_bestval_at17.pth
22 │ └── lidar_heterogeneous
23 │ ├── blindmap_quality_result.txt
24 │ ├── config.yaml
25 │ └── net_epoch_bestval_at37.pth
26 └── v2xset
27 ├── camera
28 │ ├── config.yaml
29 │ └── net_epoch_bestval_at19.pth
30 ├── lidar
31 │ ├── blindmap_quality_result.txt
32 │ ├── config.yaml
33 │ └── net_epoch_bestval_at19.pth
34 └── heterogeneous
35 ├── config.yaml
36 └── net_epoch_bestval_at23.pthcamera and
lidar_heterogeneous directories rather than a separate lidar directory.| Profile | Model directory | Checkpoint | SHA-256 |
|---|---|---|---|
| DAIR camera-only | models/dair/camera | net_epoch_bestval_at17.pth | b95722f3b58a13a979315a84133da971415cdc9b6a94bb555b013bd834576d81 |
| DAIR LiDAR-only | models/dair/lidar | net_epoch_bestval_at21.pth | 99302097362f02dfb73f251a4bdf7d0c4e2d7ea9ebbc51422eb322d3f27e4429 |
| DAIR heterogeneous | models/dair/heterogeneous | net_epoch_bestval_at35.pth | 10511d4a9419f42051f01be2b9e6313b6718b2843f74795b5d9ceac7b200f7f5 |
| OPV2V camera-only | models/opv2v/camera | net_epoch_bestval_at17.pth | 33ddf54fe56d82d2719876a362b4838a4f21a14a068e9acd9c16066c41800fb3 |
| OPV2V LiDAR-only profile | models/opv2v/lidar_heterogeneous | net_epoch_bestval_at37.pth | 9e2570b64335c99241dc47fc3aa6cc9f97180a78b3ff5b54330cbf5a2072b7f3 |
| OPV2V heterogeneous | models/opv2v/lidar_heterogeneous | net_epoch_bestval_at37.pth | 9e2570b64335c99241dc47fc3aa6cc9f97180a78b3ff5b54330cbf5a2072b7f3 |
| V2XSet camera-only | models/v2xset/camera | net_epoch_bestval_at19.pth | 0dccab286798a380a78257ce7559e7e7978295a67e42d386e558f9f397e4edca |
| V2XSet LiDAR-only | models/v2xset/lidar | net_epoch_bestval_at19.pth | 0a0553ae5e457071f39eb13dedf5f9627ad7d5da6a73898ecf0b9dbb6adcc230 |
| V2XSet heterogeneous | models/v2xset/heterogeneous | net_epoch_bestval_at23.pth | 60a73178b7178a18ea59e7beb8f0b4e7c1d115df3d7a97b9a4ebc511dc6d7bb9 |
--model_dir loader, where each checkpoint directory
contains both config.yaml and net_epoch_bestval_at*.pth.1git clone --branch TMC https://github.com/AlexZhu2000/BlindMap.git
2cd BlindMap
3conda create -n blindmap python=3.8
4conda activate blindmap
5pip install -r requirements.txt
6python setup.py develop
7python opencood/utils/setup.py build_ext --inplacespconv versions described in the BlindMap
repository. The checkpoints were produced in the original BlindMap/OpenCOOD
environment and may not be compatible with arbitrary spconv versions.config.yaml before inference.1root_dir: /path/to/dataset/train_or_train_json
2validate_dir: /path/to/dataset/validate_or_val_json
3test_dir: /path/to/dataset/test_or_val_json
4data_dir: /path/to/dataset/root1CUDA_VISIBLE_DEVICES=0 python opencood/tools/inference.py \
2 --model_dir /path/to/BlindMap/models/opv2v/camera \
3 --fusion_method intermediate \
4 --modal 1 \
5 --comm_volume_MB 1 \
6 --range 102.4,102.4models/dair/camera with --range 102.4,51.2 for DAIR camera-only, and
use models/v2xset/camera with --range 102.4,102.4 for V2XSet camera-only.1CUDA_VISIBLE_DEVICES=0 python opencood/tools/inference.py \
2 --model_dir /path/to/BlindMap/models/opv2v/lidar_heterogeneous \
3 --fusion_method intermediate \
4 --modal 0 \
5 --comm_volume_MB 1 \
6 --range 102.4,102.4lidar checkpoint directories: models/dair/lidar with --range 102.4,51.2, and models/v2xset/lidar with --range 102.4,102.4.1CUDA_VISIBLE_DEVICES=0 python opencood/tools/inference.py \
2 --model_dir /path/to/BlindMap/models/opv2v/lidar_heterogeneous \
3 --fusion_method intermediate \
4 --modal 4 \
5 --comm_volume_MB 1 \
6 --range 102.4,102.4models/dair/heterogeneous with --range 102.4,51.2 for DAIR
heterogeneous, and use models/v2xset/heterogeneous with
--range 102.4,102.4 for V2XSet heterogeneous.LICENSE file follows the current BlindMap source license. It is
an academic research license with redistribution restrictions. If you intend to
redistribute, modify, or use these checkpoints outside academic research, obtain
the required permission from the rights holders first.1@article{zhu2026deadline,
2 title = {Deadline-Aware Collaborative Perception via Receiver-Conditioned Utility Modeling},
3 author = {Zhu, Zhenhan and Zhao, Yanchao and Jiang, Yihang and Han, Hao and Wu, Jie},
4 journal = {IEEE Transactions on Mobile Computing},
5 year = {2026},
6 note = {Manuscript under review}
7}