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
The mask is not used for generating the locally aggregated feature. This may cause the local feature is consisted of (0,0,0) points.
For example, if an input is in shape (B, C, N), where B is the batch size, C is the number of channel, N is the number of the points. And the first half part of N are all negative values, and the second half is empty, which represented as (0,0,0). The locally aggregated feature which in shape (B, C, 1), after max operation should be all zeros, which is wrong I think.
Bests,
The text was updated successfully, but these errors were encountered:
Hi:
Thanks for sharing this project!
I'm trying to understand one function:
VoxelNet-pytorch/voxelnet.py
Lines 62 to 81 in bfd7be1
Especially:
VoxelNet-pytorch/voxelnet.py
Lines 73 to 74 in bfd7be1
The mask is not used for generating the locally aggregated feature. This may cause the local feature is consisted of (0,0,0) points.
For example, if an input is in shape (B, C, N), where B is the batch size, C is the number of channel, N is the number of the points. And the first half part of N are all negative values, and the second half is empty, which represented as (0,0,0). The locally aggregated feature which in shape (B, C, 1), after max operation should be all zeros, which is wrong I think.
Bests,
The text was updated successfully, but these errors were encountered: