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 am trying to launch VoxelNeXt, but it is silently dying at VoxelGenerator creation:
class VoxelGeneratorWrapper(): def __init__(self, vsize_xyz, coors_range_xyz, num_point_features, max_num_points_per_voxel, max_num_voxels): try: from spconv.utils import VoxelGeneratorV2 as VoxelGenerator self.spconv_ver = 1 except: try: from spconv.utils import VoxelGenerator self.spconv_ver = 1 except: from spconv.utils import Point2VoxelCPU3d as VoxelGenerator self.spconv_ver = 2 if self.spconv_ver == 1: ... else: self._voxel_generator = VoxelGenerator( vsize_xyz=vsize_xyz, coors_range_xyz=coors_range_xyz, num_point_features=num_point_features, max_num_points_per_voxel=max_num_points_per_voxel, max_num_voxels=max_num_voxels )
installed spconv-cu113 and cumm-cu113 Could you help with this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to launch VoxelNeXt, but it is silently dying at VoxelGenerator creation:
installed spconv-cu113 and cumm-cu113
Could you help with this?
The text was updated successfully, but these errors were encountered: