List of usage examples for weka.core.stemmers LovinsStemmer LovinsStemmer
LovinsStemmer
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(); } }