Does the parser need tagged data ? #9647
-
Hello, After reading various pages of your documentation, it is not clear to me whether the parser requires the tagger to annotate the data first. Intuition would tell me that it does, but I don't remember reading it clearly anywhere. Could you clarify this for me ? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It depends on the exact |
Beta Was this translation helpful? Give feedback.
It depends on the exact
tok2vec
configuration, but by default the parser does not rely on any other information beyond the text and the dependency annotation from the training data (andtok2vec
may also include static vectors). The parsers in the trained pipelines from https://spacy.io/models don't rely on any tag features. You can run just the parser with the components["tok2vec", "parser"]
in your pipeline.