有没有办法根据不同的时间间隔绘制模型准确性的图表?

Is there a way to plot a graph for the accuracy of a model against different time intervals?

我想为不同模型在不同时间间隔的准确性绘制图表。

例如,假设模型的准确率在 10 秒时为 95%,20 秒后准确率为 96%。现在我想为这个模型绘制一个图表。

可以吗?

如果是,请告诉我怎么做。

假设你有一个模型:

history = model.fit( ... )

history.history 应该有每个时期的度量值。

然后检查这个: 用于获取每个时期的完成时间