Exemplo n.º 1
0
        public IEnumerable <string> Handle(string input)
        {
            List <string> words = StringUtilities.SplitWords(input, true);

            return(tagger.tagSentence(words));
        }
 // Tag every token in a list of tokens
 public IEnumerable <string> Handle(IEnumerable <string> words)
 {
     return(tagger.tagSentence(words));
 }