Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donderom/stemerge
A collection of stemmers in Erlang
https://github.com/donderom/stemerge
Last synced: about 5 hours ago
JSON representation
A collection of stemmers in Erlang
- Host: GitHub
- URL: https://github.com/donderom/stemerge
- Owner: donderom
- Created: 2012-10-01T20:23:26.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-14T16:03:44.000Z (about 12 years ago)
- Last Synced: 2023-03-30T07:25:03.521Z (over 1 year ago)
- Language: Erlang
- Size: 1.95 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stemerge
Stemerge is a collection of [stemmers](http://en.wikipedia.org/wiki/Stemming) in Erlang.
## Supported languages
At the moment the following languages are supported:
* English (Porter2 stemming algorithm)
* FinnishRomance:
* French
* Spanish
* Portuguese
* ItalianGermanic:
* German
* DutchScandinavian:
* Swedish
* Norwegian
* Danish## Usage
Just specify the language code of a word you'd like to stem like this:
```erlang
stemerge:stem("stemerge", "en")
```or call ```stem/1``` API of any available stemmer separately:
```erlang
stemerge_no:stem("havneeier")
```