Introducing POS Tagging
- After the tokenization process is completed and transforms the raw text into a
Docobject, spacy can perform POS tagging on thatDocobject - 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
Taggerreceives aDocobject. - The
Taggeriterates over theTokenobjects. - The
Taggerassigns eachTokenobject atagattribute based on a CNN.
References
Previous
Next