我想知道如何在3D数组中使用tf.argmax
。
我的输入数据是这样的:
[[[0, -1, 5, 2, 1], [2, 2, 3, 2, 5], [6, 1, 2, 4, -1]],
[[-1, -2, 3, 2, 1], [0, 3, 2, 7, -1], [-1, 5, 2, 1, 3]]]
我希望通过这样的输入数据得到argmax的输出:
[[2, 4, 0], [2, 3, 1]]
我希望以这种格式使用softmax_cross_entropy_with_logits
函数。
我应该如何使用tf.nn.softmax_cross_entropy_with_logits
函数以及tf.equal(tf.argmax)
和tf.reduce_mean(tf.cast)
?
答案 0 :(得分:0)
您可以tf.argmax
axis=3
a = tf.constant([[[0, -1, 5, 2, 1], [2, 2, 3, 2, 5], [6, 1, 2, 4, -1]],
[[-1, -2, 3, 2, 1], [0, 3, 2, 7, -1], [-1, 5, 2, 1, 3]]])
b = tf.argmax(a, axis=2)