spacy visualizer for the dependency parser #8642
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
A dependency parser labels tokens with their parent (another token, or ROOT) and label (from a fixed list). The arcs are just drawn to connect each token to its parent. So the information is just coming from the dependency parser. You can train your own dependency parser the same as any other spaCy model. |
Beta Was this translation helpful? Give feedback.
A dependency parser labels tokens with their parent (another token, or ROOT) and label (from a fixed list). The arcs are just drawn to connect each token to its parent. So the information is just coming from the dependency parser.
You can train your own dependency parser the same as any other spaCy model.