Introducing POS Tagging
- After the tokenization process is completed and transforms the raw text into a
Doc
object, spacy can perform POS tagging on thatDoc
object - This is where the statistical model comes into play
- The statistical model is used to make predictions about which tags most likely apply to a token in the given context
The Algorithm for Tagging
- The
Tagger
receives aDoc
object. - The
Tagger
iterates over theToken
objects. - The
Tagger
assigns eachToken
object atag
attribute based on a CNN.
References
Previous
Next