-
**What do you want to do?**
- [ ] Request a change to existing documentation
- [x] Add new documentation
- [ ] Report a technical problem with the documentation
- [ ] Other
Create a separat…
-
At various times I've come across a Java lib incorporating all the currently-supported languages from the Porter Stemmer project as well as a collection of JavaScript implementations. There are variou…
-
I'm getting very odd results with the stemmer. Inconsistent. See below:
```
Main> SnowballStemmer.stem(SnowballStemmer.Stemmer("porter"), "Department of State")
"Department of St"
Main> Sno…
-
Tried a number of alternative approaches, but for example put snowball-20051019.jar in lib\weka\packages*.jar and re-ran ikvmc. This puts stemmers in the same weka.dll with everything else.
Although …
-
- [x] [Porter stemmer](http://snowballstem.org/algorithms/porter/stemmer.html) [WIP: code quality].
- [x] Lancaster stemmer.
-
**What do you want to do?**
- [ ] Request a change to existing documentation
- [x] Add new documentation
- [ ] Report a technical problem with the documentation
- [ ] Other
Create a separat…
-
The lancaster stemmer is a more aggressive stemming algorithm than porter, but also faster.
-
Use NLTK Porter Stemmer in initial implementation.
-
RecursionError occurs in [`PorterStemmer._is_consonant`](https://github.com/nltk/nltk/blob/5a63a62cfc2bdd9d35d863d1c583942e3e6baf6b/nltk/stem/porter.py#L126) when trying to stem a word containing 'yyy…
-
You currently offer the widely used Porter Stemmer and also the Lancaster Stemmer. The former is less aggressive and the later is often times too aggressive. It would be nice to implement the Lancaste…