mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 13:47:13 +03:00
20 lines
395 B
Python
20 lines
395 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",),
|
|
}
|