CIFAR-100 데이터 셋 차원 살펴보기 import tensorflow as tf mnist=tf.keras.datasets.cifar100 (X,YT),(x,yt)=mnist.load_data() print(X.shape, YT.shape, x.shape, yt.shape) import matplotlib.pyplot as plt plt.imshow(X[0]) plt.show() print(YT[0]) CIFAR-100 데이터 셋 학습하기 import tensorflow as tf mnist=tf.keras.datasets.cifar100 (X,YT),(x,yt)=mnist.load_data() X=X.reshape(50000,32*32*3)/255 x=x.reshape(10000,32*32*3)/..