Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
The Deep Learning Workshop

You're reading from   The Deep Learning Workshop Learn the skills you need to develop your own next-generation deep learning models with TensorFlow and Keras

Arrow left icon
Product type Paperback
Published in Jul 2020
Publisher Packt
ISBN-13 9781839219856
Length 474 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (5):
Arrow left icon
Nipun Sadvilkar Nipun Sadvilkar
Author Profile Icon Nipun Sadvilkar
Nipun Sadvilkar
Thomas Joseph Thomas Joseph
Author Profile Icon Thomas Joseph
Thomas Joseph
Anthony So Anthony So
Author Profile Icon Anthony So
Anthony So
Mohan Kumar Silaparasetty Mohan Kumar Silaparasetty
Author Profile Icon Mohan Kumar Silaparasetty
Mohan Kumar Silaparasetty
Mirza Rahim Baig Mirza Rahim Baig
Author Profile Icon Mirza Rahim Baig
Mirza Rahim Baig
+1 more Show less
Arrow right icon
View More author details
Toc

Table of Contents (9) Chapters Close

Preface
1. Building Blocks of Deep Learning 2. Neural Networks FREE CHAPTER 3. Image Classification with Convolutional Neural Networks (CNNs) 4. Deep Learning for Text – Embeddings 5. Deep Learning for Sequences 6. LSTMs, GRUs, and Advanced RNNs 7. Generative Adversarial Networks Appendix

3. Image Classification with Convolutional Neural Networks (CNNs)

Activity 3.01: Building a Multiclass Classifier Based on the Fashion MNIST Dataset

Solution

  1. Open a new Jupyter Notebook.
  2. Import tensorflow.keras.datasets.fashion_mnist:
    from tensorflow.keras.datasets import fashion_mnist
  3. Load the Fashion MNIST dataset using fashion_mnist.load_data() and save the results to (features_train, label_train), (features_test, label_test):
    (features_train, label_train), (features_test, label_test) = \
    fashion_mnist.load_data()
  4. Print the shape of the training set:
    features_train.shape

    The output will be as follows:

    (60000, 28, 28)

    The training set is composed of 60000 images of size 28 by 28. We will need to reshape it and add the channel dimension.

  5. Print the shape of the testing set:
    features_test.shape

    The output will be as follows:

    (10000, 28, 28)

    The testing set is composed of 10000 images of size 28 by 28. We will need to reshape it and add the channel dimension

  6. ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime