1 개요[ | ]
- TensorFlow MNIST 불러오기
Python
Copy
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
print( mnist.train.labels[:,].shape )
# (55000, 10)
print( mnist.test.labels[:,].shape )
# (10000, 10)
print( mnist.validation.labels[:,].shape )
# (5000, 10)
2 같이 보기[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.