Last answered:

25 Nov 2021

Posted on:

24 Oct 2021

4

Using Keras datasets instead of tf datasets

(x_train, y_train), (x_test, y_test) = tf.keras.datasets.mnist.load_data()
(x_train, y_train), (x_test, y_test) = (x_train/ 
255., y_train), (x_test/255., y_test)

1 answers ( 0 marked as helpful)
Instructor
Posted on:

25 Nov 2021

0

Hi,

Indeed, the MNIST dataset can be accessed/downloaded from many different places and in many different ways. It's a very popular dataset after all.

Best,
Nikola Pulev

Submit an answer