Inconsistent "dative" dependency? #8445
-
In the examples below, I would expect the word "to" to be a "dative" dependency in every case. How to reproduce the behaviour
Is this expected? Is there a linguistic rationale behind the different results, or is there just a limit on how well spaCy can detect the dative case? Your Environment
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
This is not exactly expected, but there are issues with the The I think modern Universal Dependencies doesn't differentiate between these cases at all and they would both be marked as |
Beta Was this translation helpful? Give feedback.
This is not exactly expected, but there are issues with the
dative
label that make it kind of unreliable, so it's also not something we can easily fix. If we did fix it the result would almost certainly be the removal of any detection of datives at all.The
dative
label is not a standard label in Stanford NLP or Universal Dependencies; it's specific to ClearNLP, the software we use for converting our training corpus. We'd have to look at how the conversion is done to pin down the exact reasons for this, but it could be related to issues with the underlying annotations (since they probably weren't intended for this use) or sparsity of vocabulary (the training data is of an age and type of …