# 순차적인 신경망을 구성할 때 사용할 수 있는 함수 from tensorflow.keras.models import Sequential # 레이어 도구 중 Dense(전결합층, 각 층이 바로 앞의 층과 연결되어 있는 것)과 Activation(활성화 함수)를 가져옴 from tensorflow.keras.layers import Dense, Activation # 다중 분류를 하기 위한 원-핫 인코딩을 구현할 수 있는 함수 from tensorflow.keras.utils import to_categorical # 딥러닝 모델을 연습할 수 있는 데이터셋 from tensorflow.keras.datasets import mnist # 수학 계산 라이브러리 import numpy as np # 그래프 라..