TensorFlow是Google设计的开源Python库,用于开发机器学习模型和深度学习神经网络。
top_k()用于查找最后一个维度的前k个最大条目(矩阵的每一行)。
Syntax: tensorflow.math.top_k(input, k, sorted, name)
参数:
- input:It’s the input Tensor with 1 or more dimensions.
- k(optional):It’s is 0-D tensor with default value 0.
- sorted(optional):If it’s set to true returned elements will be sorted. Default is True.
- name(optional):It defines the name for the operation.
返回:
- values: k largest elements along each last dimensional slice.
- indices:indices of values within the last dimension of input.
范例1:
Python3
# importing the library
import tensorflow as tf
# Initializing the input tensor
a = tf.constant([7, 2, 3, 9, 5], dtype = tf.float64)
# Printing the input tensor
print('a:', a)
# Calculating result
res = tf.math.top_k(a)
# Printing the result
print('Result:', res)
输出:
a: tf.Tensor([7. 2. 3. 9. 5.], shape=(5, ), dtype=float64) Result: TopKV2(values=<tf.Tensor:shape=(1, ), dtype=float64, numpy=array([9.])>, indices=<tf.Tensor:shape=(1, ), dtype=int32, numpy=array([3], dtype=int32)>)
范例2:
Python3
# importing the library
import tensorflow as tf
# Initializing the input tensor
a = tf.constant([[7, 2, 3], [ 9, 5, 7]], dtype = tf.float64)
# Printing the input tensor
print('a:', a)
# Calculating result
res = tf.math.top_k(a, k = 2)
# Printing the result
print('Result:', res)
输出:
a: tf.Tensor( [[7. 2. 3.] [9. 5. 7.]], shape=(2, 3), dtype=float64) Result: TopKV2(values=<tf.Tensor:shape=(2, 2), dtype=float64, numpy= array([[7., 3.], [9., 7.]])>, indices=<tf.Tensor:shape=(2, 2), dtype=int32, numpy= array([[0, 2], [0, 2]], dtype=int32)>)
相关用法
注:本文由纯净天空筛选整理自aman neekhara大神的英文原创作品 Python – tensorflow.math.top_k()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。