gpt4 book ai didi

tensorflow - 如何显示错误分类的图像?

转载 作者:行者123 更新时间:2023-12-03 16:31:26 26 4
gpt4 key购买 nike

在 TensorFlow 的一般训练管道中,如何打印(可能通过 TensorBoard)错误分类的示例/图像?

最佳答案

假设您正在使用一个 softmax 分类器,它在 N 个类之间进行选择作为网络的最后一层。伪代码可能看起来像这样,其中最后一层的第一个维度是批量大小:

# computation graph
predictions = argmax(softmax(final_layer))
matches = predictions == argmax(labels) # if one-hot encoded

# later
batch_matches = sess.run(matches, feed_dict={...})

for image, does_match in zip(batch_images, batch_matches):
if not does_match:
cv2.imwrite('mismatched.png', image)

关于tensorflow - 如何显示错误分类的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41135302/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com