David Landan

Results 3 comments of David Landan

Some weirdness in `de_core_news_md-3.3.0`... I'm interested in lemmas, and I found `Hässliche` varies depending on the context: ```>>> import spacy >>> nlp = spacy.load('de_core_news_md') >>> [(x.lemma_, x.pos_) for x in...

> @dblandan The v3.3 German models switched from a lookup lemmatizer that only used the word form (no context) to a statistical lemmatizer where the output does depend on the...

I see. I knew that the edit-tree lemmatizer was coming; I'm still surprised about this particular output. I'll just handle it in post-processing. Thanks for the reply! :smile: