python Keras历史

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Keras历史相关的知识,希望对你有一定的参考价值。

history_dict = history.history
history_dict.keys()
---([u'acc', u'loss', u'val_acc', u'val_loss'])


----LOSS

import matplotlib.pyplot as plt
acc = history.history['acc']
val_acc = history.history['val_acc']
loss = history.history['loss']
val_loss = history.history['val_loss']
epochs = range(1, len(acc) + 1)
# "bo" is for "blue dot"
plt.plot(epochs, loss, 'bo', label='Training loss')
# b is for "solid blue line"
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.xlabel('Epochs')
plt.ylabel('Loss')
plt.legend()
plt.show()

-----ACC
plt.clf() # clear figure
acc_values = history_dict['acc']
val_acc_values = history_dict['val_acc']
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.xlabel('Epochs')
plt.ylabel('Loss')
plt.legend()
plt.show()

以上是关于python Keras历史的主要内容,如果未能解决你的问题,请参考以下文章

Keras - 管理历史

keras:如何保存历史对象的训练历史属性

中止训练时如何获取 Keras 历史对象?

history=model.fit_generator() 为啥 keras 历史是空的?

Keras 和 AutoGraph

keras 与 tensorflow.python.keras - 使用哪一个?