spaCy/spacy/lang/id/norm_exceptions.py

18 lines
297 B
Python
Raw Normal View History

2017-07-23 18:54:19 +03:00
# coding: utf8
from __future__ import unicode_literals
2017-07-23 18:56:48 +03:00
_exc = {
"Rp": "$",
"IDR": "$",
2017-07-23 18:56:48 +03:00
"RMB": "$",
"USD": "$",
"AUD": "$",
"GBP": "$",
2017-07-23 18:56:48 +03:00
}
2017-07-23 18:54:19 +03:00
NORM_EXCEPTIONS = {}
2017-07-23 18:56:48 +03:00
for string, norm in _exc.items():
NORM_EXCEPTIONS[string] = norm
NORM_EXCEPTIONS[string.title()] = norm