We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c33a79 commit dea7738Copy full SHA for dea7738
fashion_mnist.py
@@ -1,11 +1,5 @@
1
-# -*- coding: utf-8 -*-
2
-"""Fashion_MNIST.ipynb
3
4
-Automatically generated by Colaboratory.
5
-
6
-Original file is located at
7
- https://colab.research.google.com/drive/1OcxdI9aH8paiEvgEcqOAvRquJYRAYBGu
8
-"""
+# Description: This program classifies clothes from the Fashion MNIST data set
9
10
#Import the libraries
11
import tensorflow as tf
@@ -55,4 +49,4 @@
55
49
first_image = np.array(first_image, dtype='float')
56
50
pixels = first_image.reshape((28, 28))
57
51
plt.imshow(pixels, cmap='gray')
58
- plt.show()
52
+ plt.show()
0 commit comments