Python中的测试准确性(图像分类)

时间:2020-04-22 07:52:00

标签: python image artificial-intelligence classification

我已经训练了我的数据集,并且已经对其进行了绘制。一切似乎都很好,但是当我想打印测试精度

print('\nTest accuracy:', acc)

输出是这样

Test accuracy: [0.7384201, 0.8907454, 0.9277824, 0.9450478, 0.9409635, 0.9640769, 0.97057456, 0.9810638, 0.9780934, 0.980414, 0.9876543, 0.9918314, 0.9961014, 0.9967511, 0.9906247]

例如,我不了解bcs我期望的是Test accuracy: 0.8802

这是我的notebook,完整代码

1 个答案:

答案 0 :(得分:0)

从字面上看,我只需要这样做print(np.sum(acc)/len(acc)),而不是?