Skip to content

Commit

Permalink
Remove print statement from AnnoyTransformer (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivirshup authored Mar 15, 2024
1 parent feca7d8 commit dd21b4f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/sklearn_ann/kneighbors/annoy.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def _transform(self, X):
distances **= 2

indptr = np.arange(0, n_samples_transform * n_neighbors + 1, n_neighbors)
print("csr", distances.ravel(), indices.ravel(), indptr)
kneighbors_graph = csr_matrix(
(distances.ravel(), indices.ravel(), indptr),
shape=(n_samples_transform, self.n_samples_fit_),
Expand Down

0 comments on commit dd21b4f

Please sign in to comment.