using BotSharp.NLP.Tokenize; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.NLP.Stem { /// /// Stemmer is used to remove morphological affixes from words, leaving only the word stem. /// Stemming algorithms aim to remove those affixes leaving only the stem of the word. /// IStemmer defines a standard interface for stemmers. /// public interface IStemmer { /// /// Strip affixes from the token and return the stem. /// /// /// /// string Stem(string word, StemOptions options); } }