목적 - 꽃이미지를 분류하는 모델을 만들어보자(MobileNetV2 사용) 1. 필요한 라이브러리 불러오기import osimport tensorflow as tffrom tensorflow.keras.preprocessing.image import ImageDataGenerator, img_to_array, load_imgimport numpy as npimport pandas as pdimport matplotlib.pyplot as pltfrom tensorflow.keras.callbacks import EarlyStopping, ModelCheckpoint, ReduceLROnPlateau 2. 이미지 폴더 생성# 꽃 종류 리스트categories = ['daisy', 'dandelion', '..