기업 프로젝트 할 당시 성능 잘나온 모델을 수시로 저장하지 않고 매번 모델을 돌려서 성능을 보여줬던 기억이 난다.기본적인 학습한 모델 저장 및 불러오는 방법에 대해서 간략하게 알아보자import tensorflow as tf import numpy as np(trainX, trainY), (testX, testY) = tf.keras.datasets.fashion_mnist.load_data()trainX = trainX / 255.0testX = testX / 255.0trainX = trainX.reshape( (trainX.shape[0], 28,28,1) )testX = testX.reshape( (testX.shape[0], 28,28,1) )model = tf.keras.Sequential([..