Tensorflow中的维度问题

许多函数都会有一个axis参数,那么这个是怎么算的?

tf.argmax 是 tensorflow 用numpy的np.argmax实现的,它能给出某个tensor对象在某一维上的其数据最大值所在的索引值,常用于metric(如acc)的计算

0表示行,1表示列

例子如下:

A=tf.constant([2,20,30,3,6]) # Constant 1-D Tensor
tf.math.argmax(A) # output 2 as index 2 (A[2]) is maximum in tensor A
B=tf.constant([[2,20,30,3,6],[3,11,16,1,8],[14,45,23,5,27]])
tf.math.argmax(B,0) # [2, 2, 0, 2, 2]
tf.math.argmax(B,1) # [2, 2, 1]

 

Tensorflow中的维度问题Tensorflow中的维度问题 BufaLi 发布了4 篇原创文章 · 获赞 0 · 访问量 1110 私信 关注
上一篇:numpy.argmax函数的相关用法


下一篇:PyTorch - 23 - 神经网络批处理 - 将图像批传递到PyTorch CNN