mirror of https://github.com/explosion/spaCy.git
added more currencies based on corpus data
This commit is contained in:
parent
30fd068d42
commit
37f19f5ed2
|
@ -3,7 +3,11 @@ from __future__ import unicode_literals
|
||||||
|
|
||||||
_exc = {
|
_exc = {
|
||||||
"Rp": "$",
|
"Rp": "$",
|
||||||
|
"IDR": "$",
|
||||||
"RMB": "$",
|
"RMB": "$",
|
||||||
|
"USD": "$",
|
||||||
|
"AUD": "$",
|
||||||
|
"GBP": "$",
|
||||||
}
|
}
|
||||||
|
|
||||||
NORM_EXCEPTIONS = {}
|
NORM_EXCEPTIONS = {}
|
||||||
|
|
Loading…
Reference in New Issue