CIFAR10 이미지 분석 Cifar10 dataset은 CIFAR (Canadian Institute for Advanced Research) 프로젝트의 일환으로 개발된 이미지 분류 데이터로, 10개 클래스, 6만 개(학습 5만, 테스트 1만)의 32x32 컬러 이미지를 가진 데이터셋이다. 먼저 필요한 데이터와 라이브러리를 임포트한다. import tensorflow as tf from tensorflow.keras.datasets import cifar10 import matplotlib.pyplot as plt #CIFAR-10 데이터 로드 (train_images, train_labels), (test_images, test_labels) = cifar10.load_data() 그리고 데이터를 전..
CNN 이미지 분석-CIFAR10, MNIST 이용
CIFAR10 이미지 분석 Cifar10 dataset은 CIFAR (Canadian Institute for Advanced Research) 프로젝트의 일환으로 개발된 이미지 분류 데이터로, 10개 클래스, 6만 개(학습 5만, 테스트 1만)의 32x32 컬러 이미지를 가진 데이터셋이다. 먼저 필요한 데이터와 라이브러리를 임포트한다. import tensorflow as tf from tensorflow.keras.datasets import cifar10 import matplotlib.pyplot as plt #CIFAR-10 데이터 로드 (train_images, train_labels), (test_images, test_labels) = cifar10.load_data() 그리고 데이터를 전..
2023.11.12