johnmyleswhite / kNN.jl

The k-nearest neighbors algorithm in Julia
Other
22 stars 17 forks source link

KDTree implementation #11

Closed wildart closed 10 years ago

wildart commented 10 years ago

I've added a basic KDTree implementation and modified 'knn' function so it could accept different types of data structures for keeping training data. Plus, some requirements, dependencies and tests clean up.

johnmyleswhite commented 10 years ago

In general, this looks great. But I'd like to keep the nearest neighbor code in a separate package that can be reused without having to pull in kNN.

Will give inline comments over next few days as I do more thorough review.