Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet

Lab 2 – Fashion Item Classifier

1. Working with the Fashion MNIST Dataset

a. Import tensorflow and keras and run your code:

# TensorFlow and tf.keras
import tensorflow as tf
from tensorflow import keras

# Helper libraries
import numpy as np
import matplotlib.pyplot as plt

print(tf.__version__)
2.3.0

b. Obtain the Fashion MNIST dataset available within the keras API.

fashion_mnist = keras.datasets.fashion_mnist