From 09dc2fe41d8c47ffcd12122793147571b0c9a9c7 Mon Sep 17 00:00:00 2001 From: josalvmo <40672912+josalvmo@users.noreply.github.com> Date: Tue, 15 Jan 2019 15:24:28 -0600 Subject: [PATCH] Update in ep7.ipynb Adding plt.show() to display example image. --- ep7.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/ep7.ipynb b/ep7.ipynb index a54bc04..d695850 100644 --- a/ep7.ipynb +++ b/ep7.ipynb @@ -97,6 +97,7 @@ " img = test_data[i]\n", " plt.title('Example %d. Label: %d' % (i, test_labels[i]))\n", " plt.imshow(img.reshape((28,28)), cmap=plt.cm.gray_r) " + " plt.show() " ] }, {