-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
French model is confused by "tu" #2251
Comments
I have the same issue. Did you find a solution? |
@randomstuff @mrsaboteur Thanks for the reports – we're actually just working on improving I just created simplified test cases from the two examples above. Are those correct (do they describe the correct, intended behaviour), or did I miss something here? doc = nlp("Tu vas bien.")
assert doc[0].tag_ == 'PRON__Number=Sing|Person=2' doc = nlp("Comment vas-tu?")
assert doc[3].tag_ == 'PRON__Number=Sing|Person=2'
assert doc[3].lemma_ == 'tu' |
@ines, yes these tags for "tu" are correct. |
@ines I confirm the tags are correct. Thank you for looking into it. |
Merging this with #3052. We've now added a master thread for incorrect predictions and related reports – see the issue for more details. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Spacy (2.0.11) seems to be confused by the word "tu" in French:
The correct lemma for "tu" should be "PRON__Number=Sing|Person=2" in both cases ans the lemma should be "tu"/"Tu".
The text was updated successfully, but these errors were encountered: