2

I would like to use NLTK for pos tagging german texts. I found this question and this project. Both look quite complicated and I cannot find some NLTK documentation about how to train pos taggers. Any hint? I'm looking for the most simple way to put in some german text and to get back tagged words. Any hint?

Community
  • 1
  • 1
Achim
  • 15,415
  • 15
  • 80
  • 144
  • [This](http://experimentallabor.de/) looks like it could help you. They train a classifier-based POS-Tagger on the NEGRA-format and get quite good results. You should read the 3-4 blog posts they posted there, they give code examples too. – tobigue Nov 29 '11 at 22:23
  • Since the mentioned website experimentallabor.de is not available any more, you should check this out: https://datascience.blog.wzb.eu/2016/07/13/accurate-part-of-speech-tagging-of-german-texts-with-nltk/ – IsaacKleiner Jul 13 '16 at 14:41

2 Answers2

5

The Stanford tagger is trained on German. http://nlp.stanford.edu/software/tagger.shtml

cyborg
  • 9,989
  • 4
  • 38
  • 56
0

TreeTagger can be used for a bunch of languages, including German. However, it cannot be used for commercial purposes.