AI Programming with Python Nanodegree를 끝냈습니다. ![complete](../images/certification.svg) Pytorch를 본격적으로 배우기 위해서 큰 맘먹고 수강한 수업인데, pytorch가 정작 얼마 없어서 맥이 좀 빠졌네요. 그래도 더 공부하러 가보겠습니다. (총총)...
pytorch를 이용해서 꽃이미지를 구별해보도록 하자. 여기에서 활용할 데이터셋은 [이거](http://www.robots.ox.ac.uk/~vgg/data/flowers/102/index.html)다. 총 102종류의 꽃이 있고, 각각 여러개의 이미지가 있다. 데이터셋을 다운로드 하면 train, valid, test로 나눠져 있고 이를 활용해서 꽃을 ...
구글 스프레드 시트를 파이썬에서 조작해보자. 내가 할일은 1. 스프레드시트를 읽고 2. 스프레드시트에 쓰는 두가지 작업이다. ```python import pickle import os.path from googleapiclient.discovery import build from google_auth_oauthlib.flow import Installe...
pytorch를 활용해서 옷 이미지를 구별하는 예제를 해봤었는데, 다시 한번 복습하는 차원에서 기본적인 기능으로 해보려고 한다. ### 1. 데이터셋 준비 ```python import torch from torchvision import datasets, transforms import helper # Define a transform to norm...