Using gold POS tags to influence Dependency Parsing at inference time #13914
Unanswered
nunzianteantonio
asked this question in
Help: Coding & Implementations
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I’m working with spaCy v3.x on Italian product titles and I have trained a custom POS tagger and dependency parser on a domain-specific dataset.
In my use case, I sometimes need to override or correct POS tags for specific tokens (e.g., distinguishing between NOUN/ADJ and VERB in ambiguous product titles). I would like the dependency tree to be computed or "steered" taking these corrected ("gold") POS tags into account.
I am aware that in spaCy's standard architecture, the DependencyParser and Tagger are typically independent components that both sit on top of the Tok2Vec or Transformer listener.
My questions are:
I’d appreciate any guidance or confirmation on whether this is supported or if I should look into alternative architectures (like Stanza's pretagged mode).
Thank you for your time and for this amazing library!
Beta Was this translation helpful? Give feedback.
All reactions