mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
44 lines
461 B
Python
44 lines
461 B
Python
|
# encoding: utf8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
|
||
|
ABBREVIATIONS = [
|
||
|
"'",
|
||
|
"\\\")",
|
||
|
"<space>",
|
||
|
"''",
|
||
|
"C++",
|
||
|
"a.",
|
||
|
"b.",
|
||
|
"c.",
|
||
|
"d.",
|
||
|
"e.",
|
||
|
"f.",
|
||
|
"g.",
|
||
|
"h.",
|
||
|
"i.",
|
||
|
"j.",
|
||
|
"k.",
|
||
|
"l.",
|
||
|
"m.",
|
||
|
"n.",
|
||
|
"o.",
|
||
|
"p.",
|
||
|
"q.",
|
||
|
"r.",
|
||
|
"s.",
|
||
|
"t.",
|
||
|
"u.",
|
||
|
"v.",
|
||
|
"w.",
|
||
|
"x.",
|
||
|
"y.",
|
||
|
"z.",
|
||
|
"ä.",
|
||
|
"ö.",
|
||
|
"ü."
|
||
|
]
|
||
|
|
||
|
|
||
|
__all__ = [ "ABBREVIATIONS" ]
|