Skip to content

Commit dea7738

Browse files
Update fashion_mnist.py
1 parent 1c33a79 commit dea7738

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

fashion_mnist.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
# -*- coding: utf-8 -*-
2-
"""Fashion_MNIST.ipynb
31

4-
Automatically generated by Colaboratory.
5-
6-
Original file is located at
7-
https://colab.research.google.com/drive/1OcxdI9aH8paiEvgEcqOAvRquJYRAYBGu
8-
"""
2+
# Description: This program classifies clothes from the Fashion MNIST data set
93

104
#Import the libraries
115
import tensorflow as tf
@@ -55,4 +49,4 @@
5549
first_image = np.array(first_image, dtype='float')
5650
pixels = first_image.reshape((28, 28))
5751
plt.imshow(pixels, cmap='gray')
58-
plt.show()
52+
plt.show()

0 commit comments

Comments
 (0)