avatar

Page 64

  • Published on
    Pytorch - 08) CIFAR 10 CIFAR 10 는 열가지 단어별 이미지가 있는 데이터 셋이다. 기존에 손글씨를 분류하는 것 보다는 확실히 어려운 작업이 될 것이다. ![CIFAR10](../images/CIFAR10.png) ## 전처리 작업 ```python import torch import matplotlib.py...
  • Published on
    Pytorch - 07) Convolutional Neural Network (2) 이번에는 코드로 구현해보자. ```python class LeNet(nn.Module): def __init__(self): super().__init__() # 흑백이라 1채널, 20개 특징 추출, filter 크기, stride 1 se...
  • Published on
    Pytorch - 06) Convolutional Neural Network (1) ## Convolutional Neural Network (CNN) ### Fully Connected Layer의 문제점 Convolutional Neural Network (이하 CNN)은 이미지, 비디오, 텍스트, 사운드를 분류하는 딥러닝에서 가장 많이 사용되는 ...
  • Published on
    Pytorch - 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...
  • Published on
    Pytorch - 04) Deep Neural Network ## Deep Neural Network 이전 [Perceptron](https://yceffort.github.io/2019/02/19/pytorch-03-perceptron.html)에서 한개의 Perceptron으로는 XOR연산을 효과적으로 분류하지 못한다는 것을 이야기 했었다. ![p...