Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Training on Nuscenes dataset #9

Open
Bryant-Teng opened this issue Oct 28, 2024 · 1 comment
Open

Training on Nuscenes dataset #9

Bryant-Teng opened this issue Oct 28, 2024 · 1 comment

Comments

@Bryant-Teng
Copy link

Thank you for your outstanding work. I am trying to replicate your work on the Nuscenes dataset, but in the process of using datamodule: stage_1_bev_v2.yaml, I found that it requires a ConcatDataset which needs to import MetadriveDataset. When I choose stage_1_nuscenes.yaml, it calls the get_single_image() function instead.

@alexanderswerdlow
Copy link
Owner

Hi! You can comment out that second dataset [BEVs from Metadrive] and just train on nuScenes as long as you don't plan on using Metadrive generated BEV maps at inference time.

Something like this should work:

train:
  - _target_: multi_view_generation.bev_utils.nuscenes_dataset.NuScenesDataset
    split: 0
    return_cam_img: False
    return_bev_img: True
    augment_bev_img: True
    mini_dataset: ${extras.mini_dataset}
    dataset_dir: ${paths.nuscenes_dir}
    metadrive_compatible: False
    metadrive_compatible_v2: True
    only_keyframes: True

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants