2 thoughts on “Building a simple NLP based Chatbot in Python

  1. Will receive an error: “Error when checking model input: the list of Numpy arrays that you are passing to your model is not the size the model expected.” unless you change model.fit(X_train, y_train, epochs=100, batch_size=16) to model.fit(np.array(X_train), np.array(y_train), epochs=100, batch_size=16).

Leave a Reply

Your email address will not be published. Required fields are marked *