Pytorch - 06) Convolutional Neural Network (1) ## Convolutional Neural Network (CNN) ### Fully Connected Layer์ ๋ฌธ์ ์ Convolutional Neural Network (์ดํ CNN)์ ์ด๋ฏธ์ง, ๋น๋์ค, ํ ์คํธ, ์ฌ์ด๋๋ฅผ ๋ถ๋ฅํ๋ ๋ฅ๋ฌ๋์์ ๊ฐ์ฅ ๋ง์ด ์ฌ์ฉ๋๋ ...
ReadPytorch - 05) Image Recognition ๋ง์ง๋ง์ผ๋ฃจ๋ค๊ฐ ์๊ธ์จ ๋ถ๋ฅํด๋ณด๋ ์ค์ต์ ํด๋ณด๊ฒ ์ต๋๋ค. ### Dataset ```python import torch import matplotlib.pyplot as plt import numpy as np from torch import nn from torch.nn import functi...
ReadPytorch - 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 ``` ### ๋ฐ์ดํฐ์ ๋ง๋ค๊ธฐ ...
Read