# Day_34_01_tfhub_finetune.py import tensorflow as tf import pandas as pd import numpy as np import matplotlib.pyplot as plt import PIL.Image as Image import tensorflow_hub as hub from tensorflow.keras.preprocessing.image import ImageDataGenerator # Fine-tuning 이란 # 남이 만들어 놓은 모듈을 내가 조금만 다듬어서 사용하겠다 # trainable=True to hub.KerasLayer이걸 써서 # resnet_50 모델을 사용해서 꽃 데이터셋에 대해 학습하고 랜덤으로 뽑은 32장의 이미지에 대해 예..