POS tagger in SharpNLP

Posted by C. on Stack Overflow See other posts from Stack Overflow or by C.
Published on 2010-02-28T18:48:28Z Indexed on 2010/06/09 2:02 UTC
Read the original article Hit count: 217

Filed under:
|
|

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

:)

© Stack Overflow or respective owner

Related posts about c#

Related posts about nlp