You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from spacy.en import English
nlp = English(parse=False)
tokens = nlp('Some\nspaces and\ttab characters')
print([t.orth_ for t in tokens])
TypeError: __init__() got an unexpected keyword argument 'parse'
I'm assuming it should be parser=False?
The text was updated successfully, but these errors were encountered:
This example from Annotations Specifications under Tokenization throws TypeError:
I'm assuming it should be parser=False?
The text was updated successfully, but these errors were encountered: