This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# get packages | |
import tensorflow as tf | |
import numpy as np | |
from tensorflow import keras | |
# Load predefined data set | |
fashion_mnist = keras.datasets.fashion_mnist | |
# get data from data set | |
(training_images, training_labels), (test_images, test_labels) = fashion_mnist.load_data() |