keras训练历史记录的保存与读取

为了方便后期的作图,需要把训练过程记录下来

首先配置好神经网络以后,进行训练

history=model.fit(train_X,train_Y,batch_size=8,epochs=100)

这样就得到了一个History对象,我们主要关注的是History对象中的字典的一些数据,比如acc、loss等,

保存训练记录

import pickle

with open('trainHistoryDict.txt', 'wb') as file_pi:
    pickle.dump(history.history, file_pi)

这样就把训练过程保存到了trainHistoryDict.txt这个文件里面了

读取训练记录

with open('trainHistoryDict.txt','rb') as file_pi:
    history=pickle.load(file_pi)

 

你可能感兴趣的:(keras训练历史记录的保存与读取)