Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Comment out an unnecessary log.
  • Loading branch information
cjz18001 committed Jun 9, 2020
1 parent b4f71b8 commit 7216d02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ann_benchmarks/algorithms/nmslib.py
Expand Up @@ -81,7 +81,7 @@ class NmslibReuseIndex(BaseANN):
if self._nmslib_metric == 'jaccard_sparse':
nz = numpy.nonzero(v)[0]
v = ' '.join([str(k) for k in nz])
print(n)
#print(n)
if rq:
ids, distances = self._index.rangeQuery(v, n)
else:
Expand Down

0 comments on commit 7216d02

Please sign in to comment.