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
When evaluating the model, the validation or test set should be used because classifiers may overfit and yield perfect results on the training set.
I would suggest changing batch_xs, batch_ys = mnist.train.next_batch(1)
to batch_xs, batch_ys = mnist.test.next_batch(1)
in the section about querying the model.
The text was updated successfully, but these errors were encountered:
When evaluating the model, the validation or test set should be used because classifiers may overfit and yield perfect results on the training set.
I would suggest changing
batch_xs, batch_ys = mnist.train.next_batch(1)
to
batch_xs, batch_ys = mnist.test.next_batch(1)
in the section about querying the model.
The text was updated successfully, but these errors were encountered: