I have three questions to consult, thank you~ #8075
-
Thank you very much! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi! I think a lot of the confusion is coming from the fact that in spaCy v2.x, the The current release and documentation of Prodigy focuses on Prodigy v.10, which is compatible with spaCy 2. We're working on Prodigy v.11, with updated tagging recipes, to be compatible with spaCy v3, but this is not officially released yet.
Yep - you should be able to fine-tune an existing transformer-based pipeline as you would with a "normal" pretrained pipeline. |
Beta Was this translation helpful? Give feedback.
Hi!
I think a lot of the confusion is coming from the fact that in spaCy v2.x, the
tagger
would assign bothtoken.tag
andtoken.pos
, while it only assignstoken.tag
since v3.0. The migration guide specifies how to use the newattribute_ruler
to obtaintoken.pos
annotations.The current release and documentation of Prodigy focuses on Prodigy v.10, which is compatible with spaCy 2. We're working on Prodigy v.11, with updated tagging recipes, to be compatible with spaCy v3, but this is not officially released yet.
Yep - you should be able to fine-tune an existing transformer-based pipeline as you would with …