This file contains hidden or 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
import numpy as np | |
from tensorflow import keras | |
from tensorflow.keras import layers | |
# Model / data parameters | |
num_classes = 10 | |
input_shape = (28, 28, 1) | |
# the data, split between train and test sets | |
# (x_train, y_train), (x_test, y_test) = keras.datasets.mnist.load_data() |