You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i run :
python tools/data_converter/vad_nuscenes_converter.py nuscenes --root-path ./data/nuscenes --out-dir ./data/nuscenes --extra-tag vad_nuscenes --version v1.0-mini --canbus ./data
run scueess
when run:
CUDA_VISIBLE_DEVICES=0 python tools/test.py projects/configs/VAD/VAD_tiny_e2e.py /home/wxl/VAD/ckpts/VAD_tiny.pth --launcher none --eval bbox --tmpdir tmp
i has error:
No such file or directory: 'data/nuscenes/maps/expansion/boston-seaport.json'
how to use mini dataset
The text was updated successfully, but these errors were encountered:
This will create .pkl files in the nuscenes directory. extra-tag is just a prefix your files will have.
In the config file, e.g. VAD_tiny_e2e.py you have to replace data_root with your path to nuscenes and also change the ann_file (that you created above) in the data dict, e.g. ann_file=data_root + 'vad_mini_infos_temporal_val.pkl'. What I also did in commented out the map_ann_file in the train, val, and test.
You also have to have CanBus extension and a MapExtension for this case.
when i run :
python tools/data_converter/vad_nuscenes_converter.py nuscenes --root-path ./data/nuscenes --out-dir ./data/nuscenes --extra-tag vad_nuscenes --version v1.0-mini --canbus ./data
run scueess
when run:
CUDA_VISIBLE_DEVICES=0 python tools/test.py projects/configs/VAD/VAD_tiny_e2e.py /home/wxl/VAD/ckpts/VAD_tiny.pth --launcher none --eval bbox --tmpdir tmp
i has error:
No such file or directory: 'data/nuscenes/maps/expansion/boston-seaport.json'
how to use mini dataset
The text was updated successfully, but these errors were encountered: