[Scikit-learn-general] Porter Stemmer

2012-05-25 Thread Philipp Singer
Hey! Is it possible to easly include stemming to text feature extraction in scikit-learn? I know that nltk has an implementation of the Porter stemmer, but I do not want to change my whole text feature extraction process to nltl if possible. Would be nice if I could include that somehow

Re: [Scikit-learn-general] Porter Stemmer

2012-05-25 Thread Olivier Grisel
2012/5/25 Philipp Singer kill...@gmail.com: Hey! Is it possible to easly include stemming to text feature extraction in scikit-learn? I know that nltk has an implementation of the Porter stemmer, but I do not want to change my whole text feature extraction process to nltl if possible.

Re: [Scikit-learn-general] Porter Stemmer

2012-05-25 Thread Lars Buitinck
2012/5/25, Philipp Singer kill...@gmail.com: Is it possible to easly include stemming to text feature extraction in scikit-learn? I know that nltk has an implementation of the Porter stemmer, but I do not want to change my whole text feature extraction process to nltl if possible. Would be

Re: [Scikit-learn-general] Porter Stemmer

2012-05-25 Thread xinfan meng
If you just want to avoid importing nltk, you can use Porter stemmer here. http://tartarus.org/martin/PorterStemmer/. It is just a single Python file. On Fri, May 25, 2012 at 4:45 PM, Philipp Singer kill...@gmail.com wrote: Hey! Is it possible to easly include stemming to text feature