Closed hankeceli closed 11 months ago
Hi, how you managed to solve this issue? I'm using full-size Nuscenes dataset
Hi, how you managed to solve this issue? I'm using full-size Nuscenes dataset
Hello, I managed to solve the issue by following this method.
Thank you very much I will try it! Have you been preparing data using create_data.py or the command from the mmdet repo? python tools/create_data.py nuscenes --root-path ./data/nuscenes --out-dir ./data/nuscenes --extra-tag nuscenes https://github.com/open-mmlab/mmdetection3d/blob/1.0/docs/en/datasets/nuscenes_det.md
Thank you very much I will try it! Have you been preparing data using create_data.py or the command from the mmdet repo? python tools/create_data.py nuscenes --root-path ./data/nuscenes --out-dir ./data/nuscenes --extra-tag nuscenes https://github.com/open-mmlab/mmdetection3d/blob/1.0/docs/en/datasets/nuscenes_det.md
I followed in my previously mentioned instruction, then I run the command as python tools/create_data.py nuscenes --root-path ./data/nuscenes --out-dir ./data/nuscenes --extra-tag nuscenes --version v1.0-mini
Dataset preparation of BEVFusion reference to the mmdetection3d. So, I just referenced to it for dataset preparation, I followed BEVFusion instructions for the rest of the steps.
I am in the process of building a dataset using
v1.0-mini
.I have installed all the prerequisite libraries as described in the README.md file. Following that, I executed the
python setup.py develop
command for code base installation.My working tree currently looks like this:
I downloaded the .pkl files from this link. When I run the command
python tools/create_data.py nuscenes --root-path ./data/nuscenes --out-dir ./data/nuscenes --extra-tag nuscenes --version v1.0-mini
, I encounter aFileNotFoundError: [Errno 2] No such file or directory: './data/nuscenes/nuscenes_infos_train.pkl'
error, unless I manually add the .pkl files shared by the author. As far as I understand, those .pkl files should automatically created, but it gives not found error during running Dataset Preparation phase as it says here.If I add the .pkl files, I face the following error:
I also downloaded the map extension, but there are four versions of them, and two of them are deprecated. Which one should be downloaded? Additionally, the directory structure for the map extensions is not described in the README.md. Should we directly extract all the files under the
maps
dir?Thank you.
PS: It is crucial to run it on the NuScenes mini dataset. Looking forward for your solution.