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
The first cell in the Ch01 - Natural Language Processing Basics gives a TypeError. Any way to get a correction on this cell? It is affecting the other cells.
import nltk
import spacy
import numpy as np
import pandas as pd
following line is optional for custom vocabulary installation
TypeError Traceback (most recent call last)
in
6 # following line is optional for custom vocabulary installation
7 # you can use nlp = spacy.load('en')
----> 8 nlp = spacy.load('en_core', parse=True, tag=True, entity=True)
TypeError: load() got an unexpected keyword argument 'parse'
Keras and spacy have published updated versions and it breaks some of the follow-along book code.
The text was updated successfully, but these errors were encountered: