Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article? images_train = mnist.train.images labels_train = mnist.train.labels images_test = mnist.test.images labels_test = mnist.test.labels import skimage.transform # for train data indices = np.random.choice(55000, 10000, replace = False) images_train_0 = images_train[indices]

