Java based Mahout's goal is to build scalable machine learning libraries. Are there any equivalent libraries in Python ?

link|improve this question

You could use Jython or JPype to intergrate Mahout with your Python code. See my simular question: stackoverflow.com/questions/7491953/… – Matt Alcock Oct 14 '11 at 13:39
feedback

3 Answers

up vote 7 down vote accepted

scikits learn is highly recommended http://scikit-learn.sourceforge.net/

link|improve this answer
1  
Just a note: the current implementation of scikit-learn its not yet able to leverage a Hadoop cluster to do distributed computing. It is however fairly scalable to address medium sized problems (e.g. hundreds of thousands of samples and features for linear models), esp. if you use sparse representations and / or memmap'ed arrays. – ogrisel May 31 '11 at 12:03
feedback

Orange is supposedly pretty decent, from what I've heard, but I've never used it personally. PyML might be worth taking a look at as well. Also, Monte.

link|improve this answer
1  
Orange isn't even close to being scalable. Nearly all of its algorithms are slow batch processes, and they have no intention of making them otherwise due to the academic orientation of the project. Sadly, there really isn't any Python equivalent of Mahout. – Cerin Jan 28 '11 at 13:07
2  
@Chris: the scikit-learn is probably not there yet, but it has the goal to be scalable and avoid the pitfalls of academic-oriented projects. Some of our implementations for standard problems scale already quite well. – Gael Varoquaux Jan 30 '11 at 11:48
feedback

pysuggest is a Python wrapper for SUGGEST, a Top-N recommendation engine that implements a variety of recommendation algorithms for collaborative filtering.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.