import tensorflow as tf import numpy as np from tensorflow import keras from tensorflow.keras import layers import matplotlib.pyplot as plt (train_images,train_labels),(test_images,test_labels)=tf.keras.datasets.mnist.load_data() train_images=train_images.reshape(train_images.shape[0],28,28,1).astyp