如何在3d数组中使用argmax tensorflow函数?

时间:2017-09-01 05:38:01

标签: python tensorflow softmax argmax

我想知道如何在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)

1 个答案:

答案 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)