Package weka.core.stemmers
Class Stemming
- java.lang.Object
-
- weka.core.stemmers.Stemming
-
- All Implemented Interfaces:
RevisionHandler
public class Stemming extends java.lang.Object implements RevisionHandler
A helper class for using the stemmers. Run with option '-h' to list all the available options.- Version:
- $Revision: 1.3 $
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Constructor Summary
Constructors Constructor Description Stemming()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getRevision()
Returns the revision string.static void
useStemmer(Stemmer stemmer, java.lang.String[] options)
Applies the given stemmer according to the given options.
-
-
-
Method Detail
-
useStemmer
public static void useStemmer(Stemmer stemmer, java.lang.String[] options) throws java.lang.Exception
Applies the given stemmer according to the given options. '-h' lists all the available options for the given stemmer.- Parameters:
stemmer
- the stemmer to useoptions
- the options for the stemmer- Throws:
java.lang.Exception
- if something goes wrong
-
getRevision
public java.lang.String getRevision()
Returns the revision string.- Specified by:
getRevision
in interfaceRevisionHandler
- Returns:
- the revision
-
-