Hello, thank you for this interesting work and for making it open source.
Issue Summary
I'm attempting to reproduce the NAVSIM evaluation results using the provided checkpoint (AutoVLA_PDMS_89.ckpt), but the preprocessing pipeline (tools/preprocessing/nocot_sample_generation.py/ cot_sample_generation.py) is incompatible with NAVSIM data format. There is a fundamental mismatch between the NAVSIM-trained checkpoint and the nuPlan/Waymo preprocessing code.
What I did
- Downloaded the NAVSIM checkpoint:
AutoVLA_PDMS_89.ckpt
- Downloaded NAVSIM dataset with sensor_blobs and navsim_logs
- Attempted to run evaluation using
run_pdm_score_cot.py
- Hit preprocessing failure due to missing NavSim dataset class
What I expected
- Preprocessing should support NAVSIM data format
- Evaluation should work with the provided NAVSIM checkpoint
After analyzing I realized that
There is a fundamental mismatch:
- The checkpoint
AutoVLA_PDMS_89.ckpt is trained/optimized for NAVSIM
- The preprocessing code only supports nuPlan/Waymo data formats
- No NavSim dataset class exists in the preprocessing module
My Questions
- Is there a preprocessing script specifically for NAVSIM that I'm missing?
- Should I use a different checkpoint for nuPlan/Waymo evaluation? Are those checkpoints available?
- Is there documentation on how to adapt the preprocessing for NAVSIM?
- What's the recommended way to reproduce the NAVSIM results (PDMS on NAVSIM mentioned in the paper)?
Environment
- AutoVLA version: latest from main branch
- NAVSIM dataset
- Hardware: RTX 5090, 32GB
Hello, thank you for this interesting work and for making it open source.
Issue Summary
I'm attempting to reproduce the NAVSIM evaluation results using the provided checkpoint (
AutoVLA_PDMS_89.ckpt), but the preprocessing pipeline (tools/preprocessing/nocot_sample_generation.py/ cot_sample_generation.py) is incompatible with NAVSIM data format. There is a fundamental mismatch between the NAVSIM-trained checkpoint and the nuPlan/Waymo preprocessing code.What I did
AutoVLA_PDMS_89.ckptrun_pdm_score_cot.pyWhat I expected
After analyzing I realized that
There is a fundamental mismatch:
AutoVLA_PDMS_89.ckptis trained/optimized for NAVSIMMy Questions
Environment