Dataset problem inbuilding a cnn using keras dataset fashion mnist

from where i can access this fashion-mnist dataset.csv please help

Hey @avanishsinghal149, here is some Information.

Fashion-MNIST database of fashion articles

Dataset of 60,000 28x28 grayscale images of 10 fashion categories, along with a test set of 10,000 images. This dataset can be used as a drop-in replacement for MNIST.
The class labels are:

images%20(1)

Usage:

from keras.datasets import mnist

(x_train, y_train), (x_test, y_test) = fashion_mnist.load_data()

Returns :

  • x_train, x_test: uint8 array of grayscale image data with shape (num_samples, 28, 28).
  • y_train, y_test: uint8 array of labels (integers in range 0-9) with shape (num_samples,).

Thank you.