"storytelle" is not Lemma #11176
-
Hi I tested this sentence : "What is storytelling game?" PS : My spaCy version is 3.0+ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
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. In this case, I think the POS is probably incorrect due to the missing article ("a storytelling game") and if I add the article with If this is a frequent case or a problem for you task, you can add exceptions to the lemmatizer like this, here an individual exception for "storytelling" as a verb:
There's a lemmatizer cache, so you need to do this before processing any texts with You can save this model with |
Beta Was this translation helpful? Give feedback.
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.
In this case, I think the POS is probably incorrect due to the missing article ("a storytelling game") and if I add the article with
en_core_web_sm
(v3.4.0) I do getstorytelling/NOUN
.If this is a frequent case or a problem for you task, you can add exceptions to the lemmatizer like this, here an individual exception for "storytelling" as a verb:
There's a lemmatizer cache, so you need to do this before processin…