May 2020
Intermediate to advanced
404 pages
10h 52m
English
Let's begin by downloading all four files from the MNIST dataset web page, available at http://yann.lecun.com/exdb/mnist. Once downloaded, extract all the files and you should have folders that resemble the names in the following list:
Keep these files in your working directory. We will now create a Jupyter notebook to perform exploratory data analysis (EDA) on the dataset files we have extracted.
Open your Jupyter Notebook environment in your browser and create a new Python notebook. Let's begin by importing the necessary modules:
import numpy as npimport matplotlib.pyplot as plt
The preceding lines import the numpy module ...
Read now
Unlock full access