ModelCheckpoint中模型保存

callbacks中使用
ModelCheckpoint(log_dir+'/{}_best_sub_model1.hdf5'.format(modelname), monitor='val_acc', verbose=1, save_best_only=True,save_weights_only=False)

模型保存不成功,

参照,https://www.cnpython.com/qa/489042,
将monitor='val_acc'改为monitor='val_accuracy'解决了我的问题。

 

ModelCheckpoint(log_dir+'/{}_best_sub_model1.hdf5'.format(modelname), monitor='val_accuracy', verbose=1, save_best_only=True,save_weights_only=False)

你可能感兴趣的:(Python)