numpy, matplotlib 라이브러리를 이용하여 딥러닝 학습 예제 1. w, b, E의 관계 살펴보기 import numpy as np # numpy 행렬 import matplotlib.pyplot as plt # matplotlib 그래프로 표현해줌 fig = plt.figure(figsize=(8,8)) ax = fig.add_subplot(projection='3d') ax.set_title("wbE",size=20) ax.set_xlabel("w", size=14) ax.set_xlabel("b", size=14) ax.set_xlabel("E", size=14) x=2 yT=10 w=np.random.uniform(-200,200,10000) b=np.random.uniform(-200,..