mirror of https://github.com/explosion/spaCy.git
20 lines
394 B
Python
20 lines
394 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
ADVERBS_IRREG = {
|
|
"'ns": ('eens',),
|
|
"'s": ('eens',),
|
|
"'t": ('het',),
|
|
"d'r": ('er',),
|
|
"d'raf": ('eraf',),
|
|
"d'rbij": ('erbij',),
|
|
"d'rheen": ('erheen',),
|
|
"d'rin": ('erin',),
|
|
"d'rna": ('erna',),
|
|
"d'rnaar": ('ernaar',),
|
|
'hele': ('heel',),
|
|
'nevenst': ('nevens',),
|
|
'overend': ('overeind',)
|
|
}
|