tags:

views:

142

answers:

1

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

:)

A: 

Download the model files from http://www.codeplex.com/sharpnlp, and use mModelPath to point to the models you downloaded.

Ken Bloom
I tried that already..only three tags come :/
C.