spaCy/spacy/lang/en/lemmatizer/_adverbs_irreg.py

14 lines
252 B
Python
Raw Normal View History

# coding: utf8
from __future__ import unicode_literals
ADVERBS_IRREG = {
"best": ("well",),
"better": ("well",),
"deeper": ("deeply",),
"farther": ("far",),
"further": ("far",),
"harder": ("hard",),
"hardest": ("hard",)
}