【发布时间】:2016-07-25 13:29:13
【问题描述】:
我想知道如何理解生成的张量流图/直方图。 可以找到此代码here. 这个图表很容易理解准确率和损失很容易理解。
Accuracy- Accuracy of current state of network for given train data.
Higher is better
Accuracy/Validation - Accuracy of current state of network for given Validation data which is
not seen by network before. Higher is better
Loss- Loss of network on train data. Lower is better.
Loss/Valadation - Loss of network on test data. Lower is better.
If loss increases it's a sign of over-fitting.
Conv2d/L2-Loss - Loss of particular layer wrt train data.
基本上,图表的含义以及我如何使用它来了解我的网络以及如果可能的话我可以做出哪些改变来改进它。
如何解释直方图?
【问题讨论】:
标签: machine-learning tensorflow theano deep-learning caffe