mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
c6fea3e5f6
Add language data templates to make it easier for others to contribute to the language support
18 lines
359 B
Python
18 lines
359 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from ...symbols import ORTH
|
|
|
|
|
|
_exc = {}
|
|
|
|
|
|
# Source: https://en.wiktionary.org/wiki/Category:Romanian_abbreviations
|
|
for orth in [
|
|
"1-a", "1-ul", "10-a", "10-lea", "2-a", "3-a", "3-lea", "6-lea",
|
|
"d-voastră", "dvs.", "Rom.", "str."]:
|
|
_exc[orth] = [{ORTH: orth}]
|
|
|
|
|
|
TOKENIZER_EXCEPTIONS = _exc
|