-ing forms are handled incorrectly in spaCy's English dependency parser model #2642
Labels
feat / parser
Feature: Dependency Parser
lang / en
English language data and models
models
Issues related to the statistical models
perf / accuracy
Performance: accuracy
I have noticed that -ing forms (see definitions here and here) are handled inconsistently and often incorrectly in spaCy's English dependency parser model. For example, gerunds and pure nouns are sometimes mislabeled with
csubj
instead ofnsubj
:Clicking on the button relaxes him.
-->nsubj
(displaCy Dependency Visualizer)Clicking on a button relaxes him.
-->csubj
(displaCy Dependency Visualizer)Loud shouting is rude.
-->csubj
(displaCy Dependency Visualizer)Is it possible to train the model better on -ing forms?
The text was updated successfully, but these errors were encountered: