We will perform the hello world example of deep learning. This example is used to check and ensure that a model is working as intended. For this, we will use the MNIST dataset.
Predictions with TensorFlow
Introduction to the MNIST dataset
MNIST stands for Mixed National Institute of Standards and Technology, which has produced a handwritten digits dataset. This is one of the most researched datasets in machine learning, and is used to classify handwritten digits. This dataset is helpful for predictive analytics because of its sheer size, allowing deep learning to work its magic efficiently. This dataset contains 60,000 training images and 10,000 testing images, formatted as 28 x 28 pixel monochrome images. The following screenshot...