How lemmatizer works in spaCy? #11277
-
I lemmatized some words using
I was trying to figure out the pattern of the lemmatizer but it seems inconsistent in my case. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, the English models use a rule-based lemmatizer based on the POS, but POS can be incorrect, or the rules might not be 100% correct in all cases. The accuracy also depends on whether you run the lemmatizer on short paragraphs or whole sentences. Here, you can read more about how the lemmatizer works and how the |
Beta Was this translation helpful? Give feedback.
Hello, the English models use a rule-based lemmatizer based on the POS, but POS can be incorrect, or the rules might not be 100% correct in all cases. The accuracy also depends on whether you run the lemmatizer on short paragraphs or whole sentences. Here, you can read more about how the lemmatizer works and how the
token.pos
influences the results.