Accept 'text' in matcher as an alternative to ORTH

This commit is contained in:
Matthew Honnibal 2018-12-16 20:10:43 +01:00
parent 7bbdffd36e
commit 9ef30b0cde

View File

@ -342,6 +342,8 @@ def _convert_strings(token_specs, string_store):
keys = ', '.join(operators.keys())
raise KeyError(Errors.E011.format(op=value, opts=keys))
if isinstance(attr, basestring):
if attr.upper() == 'TEXT':
attr = 'ORTH'
attr = IDS.get(attr.upper())
if isinstance(value, basestring):
value = string_store.add(value)