I am using SharpNLP for my POS tagging:
EnglishMaximumEntropyPosTagger posTagger =
new EnglishMaximumEntropyPosTagger(mModelPath);
String tagSentence = posTagger.TagSentence(question);
I only have 3 tags. How can I load a set of Penn treebank or some other tagging tree banks to use?
Thanks
:)