How to reproduce the behaviour
import spacy
nlp = spacy.load('en_core_web_sm')
doc = nlp("cameras, fungi")
for token in doc:
print(token._lemma)
# return cameras, fungi, expected: camera, fungus
Info about spaCy
- spaCy version: 2.3.8
- Platform: macOS-10.16-x86_64-i386-64bit
- Python version: 3.8.13
- Models: en
How to reproduce the behaviour
Info about spaCy