【tensorflow】tf-argmax()

import tensorflow as tf

input = [1, 3, 5, 7]

output = ([[1, 2],[3, 5]])


a = tf.argmax(input, 0) # 0表是按行

b = tf.argmax(output, 1) # 1 表示按列

with tf.Session() as sess:

    
    print("输出input最大值的索引下标:", sess.run(a))
    
    print("输出output最大值的索引下标,这是一个二维数组:",sess.run(b))
#rerurn:
3
[1 1]

在这里插入图片描述

posted @ 2022-05-02 19:41  jucw  阅读(33)  评论(0编辑  收藏  举报