mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-01 04:46:38 +03:00
18 lines
375 B
Python
18 lines
375 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",),
|
|
}
|