返回张量轴上具有最大值的索引。
用法
tf.math.argmax(
input, axis=None, output_type=tf.dtypes.int64, name=None
)
参数
-
input
一个Tensor
。 -
axis
一个整数,要减少的轴。默认为 0。 -
output_type
可选的输出数据类型(tf.int32
或tf.int64
)。默认为tf.int64
。 -
name
操作的可选名称。
返回
-
Tensor
类型为output_type
。
在身份的情况下返回最小的索引。
例如:
A = tf.constant([2, 20, 30, 3, 6])
tf.math.argmax(A) # A[2] is maximum in tensor A
<tf.Tensor:shape=(), dtype=int64, numpy=2>
B = tf.constant([[2, 20, 30, 3, 6], [3, 11, 16, 1, 8],
[14, 45, 23, 5, 27]])
tf.math.argmax(B, 0)
<tf.Tensor:shape=(5,), dtype=int64, numpy=array([2, 2, 0, 2, 2])>
tf.math.argmax(B, 1)
<tf.Tensor:shape=(3,), dtype=int64, numpy=array([2, 2, 1])>
C = tf.constant([0, 0, 0, 0])
tf.math.argmax(C) # Returns smallest index in case of ties
<tf.Tensor:shape=(), dtype=int64, numpy=0>
相关用法
- Python tf.math.argmin用法及代码示例
- Python tf.math.acosh用法及代码示例
- Python tf.math.accumulate_n用法及代码示例
- Python tf.math.angle用法及代码示例
- Python tf.math.add_n用法及代码示例
- Python tf.math.acos用法及代码示例
- Python tf.math.atan用法及代码示例
- Python tf.math.add用法及代码示例
- Python tf.math.asin用法及代码示例
- Python tf.math.asinh用法及代码示例
- Python tf.math.abs用法及代码示例
- Python tf.math.atan2用法及代码示例
- Python tf.math.atanh用法及代码示例
- Python tf.math.special.fresnel_cos用法及代码示例
- Python tf.math.polyval用法及代码示例
- Python tf.math.is_finite用法及代码示例
- Python tf.math.special.bessel_k0e用法及代码示例
- Python tf.math.invert_permutation用法及代码示例
- Python tf.math.segment_prod用法及代码示例
- Python tf.math.bincount用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.math.argmax。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。