Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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")
```