的 y_true_cls 强> 您需要提供真正的类标签的州。从你提到的博客: -
feed_dict_test = {x: data.x_test, y_true: data.y_test, y_true_cls: data.y_test_cls} def print_accuracy(): # Use TensorFlow to compute the accuracy. acc = session.run(accuracy, feed_dict=feed_dict_test) # Print the accuracy. print("Accuracy on test-set: {0:.1%}".format(acc))
正如您所看到的那样,准确度已经过 的 feed_dict_test 强> 其中y_true_cls为“True_Labels”。 的 只有在预测和True类标签的帮助下,我们才能找到准确性。 强>