mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
Exclude morphs from deprecated token attributes for now
This commit is contained in:
parent
6c1b2c0c2e
commit
a335c6dcc2
|
@ -114,8 +114,8 @@ def intify_attrs(stringy_attrs, strings_map=None, _do_deprecated=False):
|
|||
stringy_attrs["LEMMA"] = stringy_attrs.pop("L")
|
||||
if 'pos' in stringy_attrs:
|
||||
stringy_attrs["TAG"] = stringy_attrs.pop("pos")
|
||||
#if 'morph' in stringy_attrs:
|
||||
# morphs = stringy_attrs.pop('morph')
|
||||
if 'morph' in stringy_attrs:
|
||||
morphs = stringy_attrs.pop('morph')
|
||||
# for name, value in morphs.items():
|
||||
# stringy_attrs[name] = value
|
||||
for name, value in stringy_attrs.items():
|
||||
|
|
Loading…
Reference in New Issue
Block a user