제7장 배수 분류 – 배수 분류(2)

– 의류 이미지 분류 (Fashion MNIST) – 의류 데이터 준비 ※ TensorFlow 최신 버전 설치 !pip install tensorflow_gpu==2.6.0 1. TensorFlow 가져오기 import tensorflow as tf 2. TensorFlow 버전 확인 tf.__version__ ##출력: ‘2.6.0’ 3. 모드 MNIST 레코드 로드 (x_train_all, y_train_all), (x_test, y_test) = tf.keras.datasets.fashion_mnist.load_data() 4. 훈련 세트의 크기 확인 print(x_train_all.shape, y_train_all.shape) ##출력: (60000, 28, 28) (60000,) … Read more