mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
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",)
|
||
|
}
|