RITA library RiPosTagger does not work
in
Contributed Library Questions
•
7 months ago
RiTokenizer tokenizer = new RiTokenizer(this);
RiPosTagger tagger = new RiPosTagger(this);
String tokens[] = tokenizer.tokenize(inText);
String tokenTags[] = tagger.tag(tokens);
//println(tokenTags);
When input inText is "Texas", the tag is "nns". When input inText is "John", the tag is "nn".
It seems like it cannot tag the proper nouns.
Thanks!!!!!!
1