Re: [Scikit-learn-general] KMeans implementation in C with OpenMP

2012-01-05 Thread Benjamin Hepp
My implementation is assuming all data fits in memory. I'll do some benchmarks and look into the openmp/building/cython issues. Benni On 12/23/11 10:46 PM, Gael Varoquaux wrote: > On Fri, Dec 23, 2011 at 10:42:45PM +0100, Gael wrote: >> The reason that we have integrated openmp code in the scikit

[Scikit-learn-general] KMeans implementation in C with OpenMP

2011-12-23 Thread Benjamin Hepp
Hi, I was wondering about the KMeans implementation in scikit-learn. From a quick scan of the code I see that the main stuff is implemented in Cython but it's spread in two different functions for the m- and the e-step and the main loop is in python. I'm using my own KMeans routine written as a Py