We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I noticed in your config you seem to only calculate IoU wrt the camera mask, and do not use the LiDAR mask:
val_evaluator = dict( type='OccMetric', num_classes=18, use_lidar_mask=False, use_image_mask=True)
However, in GaussianOcc (and OccNeRF) it appears they do use this in nusc_dataset.py with the logical AND:
nusc_dataset.py
label = np.load(label_path) semantics_3d, mask_camera_3d, mask_lidar_3d = label['semantics'], label['mask_camera'], label['mask_lidar'] inputs['semantics_3d'], inputs['mask_camera_3d'] = semantics_3d, np.logical_and(mask_camera_3d, mask_lidar_3d)
Am I misinterpreting this?
The text was updated successfully, but these errors were encountered:
Thank you for bringing this to our attention!
Our implementation is based on FlashOcc and FBOcc, both of which use camera masks, as seen in nuscenes_dataset_occ.py#L128 and nuscenes_dataset.py#L698.
After reviewing relevant works following your observation, we found that most other approaches remain use camera masks, including SelfOcc (eval_iou.py#L236), SparseOcc (old_metrics.py#L17), and LangOcc (nuscenes_dataset_occ.py#L75).
We are currently unaware of the rationale behind GaussianOcc's implementation and the performance implications. We may investigate this in the future.
Let me know if you have further questions.
Sorry, something went wrong.
No branches or pull requests
I noticed in your config you seem to only calculate IoU wrt the camera mask, and do not use the LiDAR mask:
However, in GaussianOcc (and OccNeRF) it appears they do use this in
nusc_dataset.py
with the logical AND:Am I misinterpreting this?
The text was updated successfully, but these errors were encountered: