Re: [Scikit-learn-general] Making approximate nearest neighbor search more efficient

2015-08-02 Thread Joel Nothman
Thanks, I look forward to this being improved, while I have little availability to help myself atm. On 2 August 2015 at 22:58, Maheshakya Wijewardena wrote: > I agree with Joel. Profiling indicated that 69.8% of total time of > kneighbors is spent on _find_matching_indices and 22.9% is spent on

Re: [Scikit-learn-general] Making approximate nearest neighbor search more efficient

2015-08-02 Thread Maheshakya Wijewardena
I agree with Joel. Profiling indicated that 69.8% of total time of kneighbors is spent on _find_matching_indices and 22.9% is spent on _compute_distances. So I'll give priority to work on _find_matching_indices with the method you suggested. On Sun, Aug 2, 2015 at 10:51 AM, Maheshakya Wijewardena