언어 : Python 개발환경 : Anaconda jupyter Notebook 사용 라이브러리 : numpy, math, scipy.special (jupyter notebook에서는 !pip install numpy을 통해 라이브러리 설치 가능) 결과까지 나온 github 링크입니다. (star도 눌러주시면 감사합니다) : https://github.com/Jalbin1307/multi-layer_perceptron # 필요한 라이브러리 import import numpy as np import math import scipy.special # 데이터 시각화 함수 def output_prt(data): x, y = data.shape for i in range(x): for j in range(y):..