Skip to content

Commit

Permalink
Fix Now Working
Browse files Browse the repository at this point in the history
  • Loading branch information
Stelath committed Sep 7, 2023
1 parent e7a135a commit 5b56c8a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ weights/*
pretrained
data/Kitti/downsampled
data/ModelNet/*.pkl
data/3DMatch/data/*
2 changes: 1 addition & 1 deletion geotransformer/utils/pointcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def get_nearest_neighbor(
):
r"""Compute the nearest neighbor for the query points in support points."""
s_tree = cKDTree(s_points)
distances, indices = s_tree.query(q_points, k=1, n_jobs=-1)
distances, indices = s_tree.query(q_points, k=1)
if return_index:
return distances, indices
else:
Expand Down
1 change: 1 addition & 0 deletions load_cuda.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module load cuda/12.0.1-gcc
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ tqdm
coloredlogs
easydict
nibabel
open3d==0.11.2
open3d==0.14.1
scikit-learn
einops
ipdb
Expand Down

0 comments on commit 5b56c8a

Please sign in to comment.