绘制Keras历史
用于打印python软件包
如何安装此软件包?
和往常一样,只需使用pip下载即可:
pip install plot_keras_history
测试覆盖率
由于某些软件处理覆盖率有时会略有不同,因此以下是其中三个:
用法
假设您有一个由函数my_keras_model生成的模型:
绘制训练历史
在以下示例中,我们将看到如何绘制以及显示或保存训练历史记录:
from plot_keras_history import plot_history
import matplotlib . pyplot as plt
model = my_keras_model ()
history = model . fit (...)
plot_history ( history )
plt . show ()
plot_history ( history , path =
2021-04-15 04:40:53
1.09MB
Python
1