Views
No views yet
1python train.py \
2 --qwen_path="/path/to/qwen/model" \
3 --train_path="/path/to/train/dataset" \
4 --val_path="/path/to/val/dataset" \
5 --img_path="/path/to/images" \
6 --train_feature_path="/path/to/train/lidar/features" \
7 --val_feature_path="/path/to/val/lidar/features" \
8 --output_path="/checkpoint/path" \
9 --mode="" \
10 --stage="" \
11 --lr=2e-5 \
12 --epochs=3 \
13 --batch_size=1 \
14 --accum_steps=641python evaluate.py \
2 --qwen_path="/path/to/qwen/model" \
3 --checkpoint_path="/checkpoint/path" \
4 --inference \
5 --evaluate \
6 --mode="" \
7 --json_path="/path/to/test/dataset" \
8 --img_path="/path/to/images" \
9 --test_feature_path="/path/to/test/lidar/features" \
10 --inference_save_path="results.json"1@misc{richard2026d2v2xdepthdrivencooperativev2x,
2 title={D2-V2X: Depth-Driven Cooperative V2X Reasoning for Autonomous Driving},
3 author={Kevin Richard and Alphin Varghese and Colin Pham and David Oh and Srijan Das},
4 year={2026},
5 eprint={2605.24098},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2605.24098},
9}