Created
August 11, 2022 16:36
-
-
Save akesling/42393ccb868125071fdea77d98a0d2f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import struct | |
import numpy as np | |
""" | |
Loosely inspired by http://abel.ee.ucla.edu/cvxopt/_downloads/mnist.py | |
which is GPL licensed. | |
Last tested on Python 3.9 (2022-08-11) | |
""" | |
def read(dataset = "training", path = "."): | |
""" | |
Python function for importing the MNIST data set. It returns an iterator | |
of 2-tuples with the first element being the label and the second element | |
being a numpy.uint8 2D array of pixel data for the given image. | |
""" | |
if dataset == "training": | |
fname_img = os.path.join(path, 'train-images-idx3-ubyte') | |
fname_lbl = os.path.join(path, 'train-labels-idx1-ubyte') | |
elif dataset == "testing": | |
fname_img = os.path.join(path, 't10k-images-idx3-ubyte') | |
fname_lbl = os.path.join(path, 't10k-labels-idx1-ubyte') | |
else: | |
raise(ValueError, "dataset must be 'testing' or 'training'") | |
# Load everything in some numpy arrays | |
with open(fname_lbl, 'rb') as flbl: | |
magic, num = struct.unpack(">II", flbl.read(8)) | |
lbl = np.fromfile(flbl, dtype=np.int8) | |
with open(fname_img, 'rb') as fimg: | |
magic, num, rows, cols = struct.unpack(">IIII", fimg.read(16)) | |
img = np.fromfile(fimg, dtype=np.uint8).reshape(len(lbl), rows, cols) | |
get_img = lambda idx: (lbl[idx], img[idx]) | |
# Create an iterator which returns each image in turn | |
for i in range(len(lbl)): | |
yield get_img(i) | |
def show(image): | |
""" | |
Render a given numpy.uint8 2D array of pixel data. | |
""" | |
from matplotlib import pyplot | |
import matplotlib as mpl | |
fig = pyplot.figure() | |
ax = fig.add_subplot(1,1,1) | |
imgplot = ax.imshow(image, cmap=mpl.cm.Greys) | |
imgplot.set_interpolation('nearest') | |
ax.xaxis.set_ticks_position('top') | |
ax.yaxis.set_ticks_position('left') | |
pyplot.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment