avatar

Page 65

  • Published on
    Pytorch - 03) Perceptron ## Perceptron (마지막 정리가 되길 바라며) Perceptron은 우리 두뇌 (뉴런)의 인지능력을 모방하도록 만든 인위적인 네트워크다. ![perceptron](https://cdn-images-1.medium.com/max/1600/1*_Zy1C83cnmYUdETCeQrOgA.png) 퍼셉트...
  • Published on
    Pytorch - 02) Linear Regression ## Linear Regression Linear Regression이 한국말로 뭐였더라? ```python import torch import torch.nn as nn import matplotlib.pyplot as plt import numpy as np ``` ### 데이터셋 만들기 ...
  • Published on
    AI Programming with Python Nanodegree를 끝냈습니다. ![complete](../images/certification.svg) Pytorch를 본격적으로 배우기 위해서 큰 맘먹고 수강한 수업인데, pytorch가 정작 얼마 없어서 맥이 좀 빠졌네요. 그래도 더 공부하러 가보겠습니다. (총총)...
  • Published on
    pytorch를 이용해서 꽃이미지를 구별해보도록 하자. 여기에서 활용할 데이터셋은 [이거](http://www.robots.ox.ac.uk/~vgg/data/flowers/102/index.html)다. 총 102종류의 꽃이 있고, 각각 여러개의 이미지가 있다. 데이터셋을 다운로드 하면 train, valid, test로 나눠져 있고 이를 활용해서 꽃을 ...