(x_train, y_train), (x_test, y_test) = mnist.load_data()
    print("x_train shape", x_train.shape)
    print("y_train shape", y_train.shape)
    print("x_test shape", x_test.shape)
    print("y_test shape", y_test.shape)

    실행 결과

    Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/mnist.npz
    11493376/11490434 [==============================] - 0s 0us/step
    x_train shape (60000, 28, 28)
    y_train shape (60000,)
    x_test shape (10000, 28, 28)
    y_test shape (10000,)
    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.