Alexandre Boulch
Results
2
issues of
Alexandre Boulch
Radius CPU computation with KDTree.query() when number of neighbors is higher than max_num_neighbors
5
Hello, In the radius search CPU, you are using: ``` tree = scipy.spatial.cKDTree(x.detach().numpy()) _, col = tree.query( y.detach().numpy(), k=max_num_neighbors, distance_upper_bound=r + 1e-8) ``` It seems that there is no guaranty...
enhancement
Hello, Thanks for releasing the code of Voxel-MAE. In the paper I see only R11 score for 3D detection on KITTI3D, would it be possible to share also the R40...