keras的损失是百分比吗?
Is the loss in keras in percentage?
我正在尝试实现 VGGNet-16 以从单个图像进行深度图预测。在训练中,RMSE 损失为 0.1599。
那个损失值,是不是百分比?
不,如果您想要正确分类数据的百分比,您可以查看准确度值。
维基百科对 RMSE 的定义:
The root-mean-square deviation (RMSD) or root-mean-square error (RMSE) is a frequently used measure of the differences between values (sample and population values) predicted by a model or an estimator and the values actually observed.
它总是非负的,值越接近零越好。
我正在尝试实现 VGGNet-16 以从单个图像进行深度图预测。在训练中,RMSE 损失为 0.1599。
那个损失值,是不是百分比?
不,如果您想要正确分类数据的百分比,您可以查看准确度值。
维基百科对 RMSE 的定义:
The root-mean-square deviation (RMSD) or root-mean-square error (RMSE) is a frequently used measure of the differences between values (sample and population values) predicted by a model or an estimator and the values actually observed.
它总是非负的,值越接近零越好。