What is the best way to add/remove stop words with spacy? I am using token.is_stop function and would like to make some custom changes to the set. I was looking at the docum
For 2.0 use the following:
for word in nlp.Defaults.stop_words: lex = nlp.vocab[word] lex.is_stop = True