'Train a Deep Neural Network using MNIST data set

model.fit( x_train, y_train, batch_size=64, epochs=5, validation_data=(x_test,y_test) )

code is giving argument error.

What is wrong in the code?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source