#include <nn_ops.h>
Finds values and indices of the k
largest elements for the last dimension.
If the input is a vector (rank-1), finds the k
largest entries in the vector and outputs their values and indices as vectors. Thus values[j]
is the j
-th largest entry in input
, and its index is indices[j]
.
For matrices (resp. higher rank input), computes the top k
entries in each row (resp. vector along the last dimension). Thus,
values.shape = indices.shape = input.shape[:-1] + [k]
If two elements are equal, the lower-index element appears first.
Arguments:
k
.Optional attributes (see Attrs
):
k
elements will be sorted by the values in descending order.Returns:
Output
values: The k
largest elements along each last dimensional slice.Output
indices: The indices of values
within the last dimension of input
. Constructors and Destructors | |
---|---|
TopK(const ::tensorflow::Scope & scope, ::tensorflow::Input input, ::tensorflow::Input k) | |
TopK(const ::tensorflow::Scope & scope, ::tensorflow::Input input, ::tensorflow::Input k, const TopK::Attrs & attrs) |
Public attributes | |
---|---|
indices | |
values |
Public static functions | |
---|---|
Sorted(bool x) |
Structs | |
---|---|
tensorflow::ops::TopK::Attrs | Optional attribute setters for TopK. |
::tensorflow::Output indices
::tensorflow::Output values
TopK( const ::tensorflow::Scope & scope, ::tensorflow::Input input, ::tensorflow::Input k )
TopK( const ::tensorflow::Scope & scope, ::tensorflow::Input input, ::tensorflow::Input k, const TopK::Attrs & attrs )
Attrs Sorted( bool x )
© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/top-k.html