9주차에는 PyTorch 라이브러리를 사용한 Neural Network를 구축 및 훈련하는 방법에 대해 배웠다. 강의에서 배운 사고의 흐름을 복습 및 정리하고자 한다. 1. Import 가장 먼저 시작해야 되는 것은, 필요한 라이브러리를 import하는 것이다. import numpy as np import matplotlib.pyplot as plt import torch import torch.nn as nn import torch.nn.functional as F 2. Dataset 다음으로 할 것은 데이터셋을 준비하는 것이다. import tensorflow as tf MNIST 데이터셋을 불러오기 위해, TensorFlow 라이브러리를 import하였다. (x_train, y_train), (x..