mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
ee24e2534d
* adding adverbs and irregular cases for empty words * adding adverbs and irregular cases for empty words * adding adverbs and irregular cases for empty words * updating contributor agreement for amperinet
18 lines
341 B
Python
18 lines
341 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
CCONJ_IRREG = {
|
|
"&": ("et",),
|
|
"c-à-d": ("c'est-à-dire",),
|
|
"c.-à.-d.": ("c'est-à-dire",),
|
|
"càd": ("c'est-à-dire",),
|
|
"&": ("et",),
|
|
"et|ou": ("et-ou",),
|
|
"et/ou": ("et-ou",),
|
|
"i.e.": ("c'est-à-dire",),
|
|
"ie": ("c'est-à-dire",),
|
|
"ou/et": ("et-ou",),
|
|
"+": ("plus",)
|
|
}
|