List of usage examples for weka.core.stemmers Stemming useStemmer
public static void useStemmer(Stemmer stemmer, String[] options) throws Exception
From source file:StemmerOverRide.java
License:Open Source License
/** * Runs the stemmer with the given options * * @param args the options/*from w w w.j av a 2 s .c o m*/ */ public static void main(String[] args) { try { Stemming.useStemmer(new LovinsStemmer(), args); } catch (Exception e) { e.printStackTrace(); } }