user3606057
user3606057

Reputation: 25

POS tagging using brown tag set in NLTK

Is it possible to assign tags using brown tag set in NLTK? I m not using the brown corpus which is already tagged.

Upvotes: 0

Views: 1619

Answers (1)

alexis
alexis

Reputation: 50220

Yes, but not out of the box: You can train your own tagger on the Brown corpus. Performance will depend on the kind of text you need to tag, and on how much work you put into trying out different kinds of taggers. Chapter 5 of the NLTK book will walk you step by step through the process of making a pretty decent tagger (look at the section on N-Gram Tagging in particular), and it even uses the Brown corpus as an example-- you won't need to change a thing.

Upvotes: 1

Related Questions