We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allow_pickle = True
When processing the IMDB data for RNN, I got an error which suggests to allow pickle.
pickle
I found the following fix works for me:
with np.load('imdb.npz', allow_pickle = True) as f:
with np.load('imdb.npz') as f:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When processing the IMDB data for RNN, I got an error which suggests to allow
pickle
.I found the following fix works for me:
with np.load('imdb.npz', allow_pickle = True) as f:
fromwith np.load('imdb.npz') as f:
The text was updated successfully, but these errors were encountered: