Example usage for weka.core.stemmers LovinsStemmer LovinsStemmer

List of usage examples for weka.core.stemmers LovinsStemmer LovinsStemmer

Introduction

In this page you can find the example usage for weka.core.stemmers LovinsStemmer LovinsStemmer.

Prototype

LovinsStemmer

Source Link

Usage

From source file:StemmerOverRide.java

License:Open Source License

/**
 * Runs the stemmer with the given options
 *
 * @param args      the options/*  w  ww . j  ava  2  s .com*/
 */
public static void main(String[] args) {
    try {
        Stemming.useStemmer(new LovinsStemmer(), args);
    } catch (Exception e) {
        e.printStackTrace();
    }
}