#Keras library for CIFAR-10 dataset
from keras.datasets import cifar10
#Downloading the CIFAR dataset
(x_train,y_train),(x_test,y_test)=cifar10.load_data()
#Keras library for CIFAR-10 dataset
from keras.datasets import cifar10
#Downloading the CIFAR dataset
(x_train,y_train),(x_test,y_test)=cifar10.load_data()