Custom tagging model generates blank pos_ output #11598
Answered
by
adrianeboyd
funghetto
asked this question in
Help: Coding & Implementations
-
I've trained my model (for more info see my old issue.
I'm getting this output:
Can someone give me any clue on why it is not tagging the phrase? |
Beta Was this translation helpful? Give feedback.
Answered by
adrianeboyd
Oct 10, 2022
Replies: 1 comment
-
Check that your pipeline contains a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
funghetto
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check that your pipeline contains a
morphologizer
. Using the default spacy CoNLL-U converter, XPOS is saved astoken.tag_
and UPOS is saved astoken.pos_
.token.tag_
is output by thetagger
component andtoken.pos_
+token.morph
are output by themorphologizer
component.