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
Hi, I wanted to train sphereformer for 3d detection.
While in detection folder I do: python -m pcdet.datasets.nuscenes.nuscenes_dataset --func create_nuscenes_infos --cfg_file tools/cfgs/dataset_configs/nuscenes_dataset.yaml --version v1.0-trainval
When I wanted to then train it I used this command in detection/tools folder: python3 train.py --cfg_file cfgs/nuscenes_models/cbgs_voxel0075_res3d_centerpoint_sphereformer.yaml
I got the error: AttributeError: 'EasyDict' object has no attribute 'BACKUP_DB_INFO'
After some looking in code I found that file detection/pcdet/datasets/nuscenes/nuscenes_dataset.py has commented out:
nuscenes_dataset = NuScenesDataset(
dataset_cfg=dataset_cfg, class_names=None,
root_path=ROOT_DIR / 'data' / 'nuscenes',
logger=common_utils.create_logger(), training=True)
nuscenes_dataset.create_groundtruth_database(max_sweeps=dataset_cfg.MAX_SWEEPS)
While cbgs_voxel0075_res3d_centerpoint_sphereformer.yaml file has
DB_INFO_PATH:
- nuscenes_dbinfos_10sweeps_withvelo.pkl
The text was updated successfully, but these errors were encountered:
Hi, I wanted to train sphereformer for 3d detection.
While in detection folder I do:
python -m pcdet.datasets.nuscenes.nuscenes_dataset --func create_nuscenes_infos --cfg_file tools/cfgs/dataset_configs/nuscenes_dataset.yaml --version v1.0-trainval
When I wanted to then train it I used this command in detection/tools folder:
python3 train.py --cfg_file cfgs/nuscenes_models/cbgs_voxel0075_res3d_centerpoint_sphereformer.yaml
I got the error:
AttributeError: 'EasyDict' object has no attribute 'BACKUP_DB_INFO'
After some looking in code I found that file detection/pcdet/datasets/nuscenes/nuscenes_dataset.py has commented out:
nuscenes_dataset = NuScenesDataset(
dataset_cfg=dataset_cfg, class_names=None,
root_path=ROOT_DIR / 'data' / 'nuscenes',
logger=common_utils.create_logger(), training=True)
nuscenes_dataset.create_groundtruth_database(max_sweeps=dataset_cfg.MAX_SWEEPS)
While cbgs_voxel0075_res3d_centerpoint_sphereformer.yaml file has
DB_INFO_PATH:
- nuscenes_dbinfos_10sweeps_withvelo.pkl
The text was updated successfully, but these errors were encountered: