You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the old spacy an adversarial sentence "What happened for F-22 in Syria?" has .noun_chunks attribute as [what, F-22, Syria] and the new one misses F-22. The pos and tags are the same in both versions. however the dep_ is different. Would this difference reliably explain the difference in noun_chunks?
Yes, the noun chunks depend on the part-of-speech tags and the dependency parse, so this issue likely comes down to the difference in predictions made by the parser.
I'm merging this with #3052. We've now added a master thread for incorrect predictions and related reports – see the issue for more details.
This table quickly describes the problem.
In the old spacy an adversarial sentence "What happened for F-22 in Syria?" has
.noun_chunks
attribute as[what, F-22, Syria]
and the new one misses F-22. The pos and tags are the same in both versions. however thedep_
is different. Would this difference reliably explain the difference innoun_chunks
?Old environment
New environment
The text was updated successfully, but these errors were encountered: