machinelearning

    [Machine Learning] 손글씨데이터 활용 분류 실습

    [Machine Learning] 손글씨데이터 활용 분류 실습

    목표 - 손글씨(0-9)를 분류하는 모델을 만들어보자 - 여러모델을 사용해보자 - 이미지 데이터 다루는 방법을 알아보자 도구불러오기 import numpy as np import pandas as pd import matplotlib.pyplot as plt 데이터 불러오기 # train - 학습시킬 때 # test -> 예측할 때 digit_data = pd.read_csv('./digit_train.csv') digit_data .info() - 크기확인 .shape - 결측치 확인 - datatype 확인 digit_data.info() # 42000 행, 785 컬럼 # label to pixel783 # dtypes : int64(785) # 컬러가 흑과 백만 있는 데이터 EDA 데이터를 이미지..