인공지능/딥러닝

    딥러닝 : Prophet 라이브러리를 이용한 Time Series 데이터 예측

    AVOCADO 가격 예측 ( Prophet ) STEP #0: 데이터셋 데이터는 미국의 아보카도 리테일 데이터 입니다. (2018년도 weekly 데이터) 아보카도 거래량과 가격이 나와 있습니다 컬럼 설명 : Date - The date of the observation AveragePrice - the average price of a single avocado type - conventional or organic year - the year Region - the city or region of the observation Total Volume - Total number of avocados sold 4046 - Total number of avocados with PLU 4046 sold - P..

    딥러닝 : 에포크 시마다 가장 좋은 모델을 저장하는 ModelCheckpoint와 기록을 남기는 CSVLogger 사용법

    The Vehicle Type Classification Project Vehicle Type을 분류하는 실습을 진행해보겠습니다. # import the necessary packages from tensorflow.keras.preprocessing.image import ImageDataGenerator from tensorflow.keras.layers import AveragePooling2D, GlobalAveragePooling2D, BatchNormalization #from tensorflow.keras.applications import ResNet50 #from tensorflow.keras.applications import Xception from tensorflow.keras.ap..

    딥러닝 : Fine tuning 파인튜닝

    파인 튜닝 : 섬세한 튜닝 이전 게시글인 https://hyunsungstory.tistory.com/173 딥 러닝 : Transfer Learning ( MobileNetV2 ) !wget --no-check-certificate \ https://storage.googleapis.com/mledu-datasets/cats_and_dogs_filtered.zip \ -O ./cats_and_dogs_filtered.zip 개 vs 고양이 이미지 파일 다운로드 코드 import os import zipfile import numpy as np import tensorflow as hyunsungstory.tistory.com 의 데이터로 진행합니다. 이 방법은 꼭!!! 트랜스퍼 러닝을 한 다음에 수행하..

    딥 러닝 : Transfer Learning ( MobileNetV2 )

    !wget --no-check-certificate \ https://storage.googleapis.com/mledu-datasets/cats_and_dogs_filtered.zip \ -O ./cats_and_dogs_filtered.zip 개 vs 고양이 이미지 파일 다운로드 코드 import os import zipfile import numpy as np import tensorflow as tf import matplotlib.pyplot as plt # 파이썬의 진행상태를 표시해 주는 라이브러리 from tqdm import tqdm_notebook from tensorflow.keras.preprocessing.image import ImageDataGenerator %matplotlib..