https://github.com/donderom/stemerge
A collection of stemmers in Erlang
https://github.com/donderom/stemerge
erlang nlp stemming
Last synced: 5 months 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 (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-10-14T16:03:44.000Z (over 13 years ago)
- Last Synced: 2024-12-30T03:19:25.689Z (over 1 year ago)
- Topics: erlang, nlp, stemming
- Language: Erlang
- Homepage:
- Size: 1.95 MB
- Stars: 2
- Watchers: 2
- Forks: 3
- 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)
* Finnish
Romance:
* French
* Spanish
* Portuguese
* Italian
Germanic:
* German
* Dutch
Scandinavian:
* 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")
```