return:
- object : The object of the words with POS-tags.
words = [utils.preprocess(w) for w in words]
postags = self._postagging(words, lower)
return postags
def tagging(self, text, lower=False):
After Change
return:
- object : The object of the words with POS-tags.
return self.decode(words, lower)
def decode(self, words, lower=False):
Return the words with tags of the given words.