I just started using a part-of-speech tagger, and I am facing many problems.
I started POS tagging with the following:
import nltk text=nltk.word_to
If nltk version is 3.4.5, do the below:
import nltk nltk.download('averaged_perceptron_tagger')
To check you nltk version, do the below:
print (nltk.__version__)