Pytorch - 04) Deep Neural Network ## Deep Neural Network ์ด์ [Perceptron](https://yceffort.github.io/2019/02/19/pytorch-03-perceptron.html)์์ ํ๊ฐ์ Perceptron์ผ๋ก๋ XOR์ฐ์ฐ์ ํจ๊ณผ์ ์ผ๋ก ๋ถ๋ฅํ์ง ๋ชปํ๋ค๋ ๊ฒ์ ์ด์ผ๊ธฐ ํ์๋ค. ![p...
ReadPytorch - 03) Perceptron ## Perceptron (๋ง์ง๋ง ์ ๋ฆฌ๊ฐ ๋๊ธธ ๋ฐ๋ผ๋ฉฐ) Perceptron์ ์ฐ๋ฆฌ ๋๋ (๋ด๋ฐ)์ ์ธ์ง๋ฅ๋ ฅ์ ๋ชจ๋ฐฉํ๋๋ก ๋ง๋ ์ธ์์ ์ธ ๋คํธ์ํฌ๋ค. ![perceptron](https://cdn-images-1.medium.com/max/1600/1*_Zy1C83cnmYUdETCeQrOgA.png) ํผ์ ํธ...
ReadPytorch - 02) Linear Regression ## Linear Regression Linear Regression์ด ํ๊ตญ๋ง๋ก ๋ญ์๋๋ผ? ```python import torch import torch.nn as nn import matplotlib.pyplot as plt import numpy as np ``` ### ๋ฐ์ดํฐ์ ๋ง๋ค๊ธฐ ...
ReadAI Programming with Python Nanodegree๋ฅผ ๋๋์ต๋๋ค. ![complete](../images/certification.svg) Pytorch๋ฅผ ๋ณธ๊ฒฉ์ ์ผ๋ก ๋ฐฐ์ฐ๊ธฐ ์ํด์ ํฐ ๋ง๋จน๊ณ ์๊ฐํ ์์ ์ธ๋ฐ, pytorch๊ฐ ์ ์ ์ผ๋ง ์์ด์ ๋งฅ์ด ์ข ๋น ์ก๋ค์. ๊ทธ๋๋ ๋ ๊ณต๋ถํ๋ฌ ๊ฐ๋ณด๊ฒ ์ต๋๋ค. (์ด์ด)...
Read