학습 추적

Keras로 배우는 이미지 모델링

Ariel Rokem

Senior Data Scientist, University of Washington

학습 곡선: 훈련

Keras로 배우는 이미지 모델링

학습 곡선: 검증

Keras로 배우는 이미지 모델링

학습 곡선: 과적합

Keras로 배우는 이미지 모델링
training = model.fit(train_data, train_labels, 
                     epochs=3, validation_split=0.2)

import matplotlib.pyplot as plt plt.plot(training.history['loss'])
plt.plot(training.history['val_loss'])
plt.show()

Keras로 배우는 이미지 모델링

최적 파라미터 저장

from keras.callbacks import ModelCheckpoint

# This checkpoint object will store the model parameters 
# in the file "weights.hdf5"
checkpoint = ModelCheckpoint('weights.hdf5', monitor='val_loss', 
                             save_best_only=True)

# Store in a list to be used during training callbacks_list = [checkpoint]
# Fit the model on a training set, using the checkpoint as a #callback model.fit(train_data, train_labels, validation_split=0.2, epochs=3, callbacks=callbacks_list)
Keras로 배우는 이미지 모델링

저장된 파라미터 불러오기

model.load_weights('weights.hdf5')

model.predict_classes(test_data)
array([2, 2, 1, 2, 0, 1, 0, 1, 2, 0])
Keras로 배우는 이미지 모델링

연습해 봅시다!

Keras로 배우는 이미지 모델링

Preparing Video For Download...