-
Notifications
You must be signed in to change notification settings - Fork 940
Open
Labels
Description
Describe the bug
Evaluating "Ich wasche meine Hände." in Stanza 1.11 leads to "Hände" being treated as a verb with lemma=hinden. There is no verb "hinden" in German, and Hände is a noun meaning "hands".
To Reproduce
Steps to reproduce the behavior:
Install python 3.10 and Stanza 1.11.0
import stanza
stanza.download('de')
nlp = stanza.Pipeline('de')
nlp('Ich wasche meine Hände.')
Expected behavior
"Hände" should be a noun with lemma=hand.
Environment (please complete the following information):
- OS: Ubuntu 22.04 running on Windows 10 WSL.
- Python version: 3.10 preinstalled with Ubuntu 22.04
- Stanza version: 1.11.0
Reactions are currently unavailable