pixelogik / NearPy

Python framework for fast (approximated) nearest neighbour search in large, high-dimensional data sets using different locality-sensitive hashes.
MIT License
759 stars 152 forks source link

candidate_count missing parameter, parentheses and xrange #53

Closed giacobenin closed 8 years ago

giacobenin commented 8 years ago

candidate_count was calling _get_candidates without parameter. I added parentheses around print's arguments. I replaced xrange with range (only in the example files, so I don't think it's a big concern, but python 3 doesn't have xrange).

Cheers!

pixelogik commented 8 years ago

Awesome, thanks!