-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmnist.py
More file actions
35 lines (26 loc) · 883 Bytes
/
mnist.py
File metadata and controls
35 lines (26 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
"""
Created on Wed Aug 28 23:47:23 2019
@author: hnambur
"""
from matplotlib import pyplot as plt
from sklearn.datasets import load_digits
# load the digits data set set
digits = load_digits()
# data is available in data member and labels are available in targets member
data = digits.data
targets = digits.target
# TODO: print the shape of data and targets
# change the plot to false if you donot want to see the sample data
plot = True
if(plot):
fig, ax = plt.subplots(3,3)# Create plots in a grid of 3 rows and 3 cols
ax = ax.flatten()
#Tip: enumerate will help you iterate through an array along with the index
for i,ax in enumerate(ax):
# TODO: reshape the data to 8X8 and assign to reshape_data variable
reshape_data =
ax.imshow(reshape_data)
ax.set_title(targets[i])
ax.axis('off')
plt.show()