Is there a way to do pos tagging on tokenized sentence? #10442
Answered
by
polm
SilasTHU
asked this question in
Help: Coding & Implementations
-
I know how to do pos tagging in the pipeline way. I have a list, of which each element is a token of the sentence. Is there a way to do pos tagging on that list? Thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
polm
Mar 6, 2022
Replies: 1 comment 1 reply
-
You can create a Doc directly from a list of words to skip the tokenizer, and then pass that to your pipeline. See the docs. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SilasTHU
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can create a Doc directly from a list of words to skip the tokenizer, and then pass that to your pipeline. See the docs.