I\'m trying to implement the binary classification example using the IMDb dataset in Google Colab. I have implemented this model before. But when I tried to
Its work for me
np_load_old = np.load np.load = lambda *a: np_load_old(*a, allow_pickle=True) (x_train, y_train), (x_test, y_test) = reuters.load_data(num_words=None, test_split=0.2) np.load = np_load_old