当前位置:网站首页>Tensorflow中使用tf.argmax返回张量沿指定维度最大值的索引

Tensorflow中使用tf.argmax返回张量沿指定维度最大值的索引

2022-08-11 06:45:00 phac123

简介

  • 返回张量沿指定维度最大值的索引tf.argmax(张量名, axis = 操作轴)

代码

import numpy as np
import tensorflow as tf

test = np.array([[1, 2, 3], [2, 3, 4], [5, 4, 3], [8, 7, 2]])
print("test:\n", test)
print("每一列的最大值的索引:", tf.argmax(test, axis=0))  # 返回每一列最大值的索引
print("每一行的最大值的索引", tf.argmax(test, axis=1))  # 返回每一行最大值的索引

在这里插入图片描述

原网站

版权声明
本文为[phac123]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_42596275/article/details/126260144