查找一维张量中的唯一元素。
用法
tf.unique_with_counts(
x, out_idx=tf.dtypes.int32, name=None
)
参数
返回
-
Tensor
对象的元组(y、idx、count)。 -
y
一个Tensor
。具有与x
相同的类型。 -
idx
Tensor
类型为out_idx
。 -
count
Tensor
类型为out_idx
。
此操作返回一个张量 y
,其中包含 x
的所有唯一元素,这些元素的排序顺序与它们在 x
中出现的顺序相同。此操作还返回一个与 x
大小相同的张量 idx
,其中包含唯一输出 y
中每个 x
值的索引。最后,它返回第三个张量 count
,其中包含 x
中 y
的每个元素的计数。换一种说法:
y[idx[i]] = x[i] for i in [0, 1,...,rank(x) - 1]
例如:
# tensor 'x' is [1, 1, 2, 4, 4, 4, 7, 8, 8]
y, idx, count = unique_with_counts(x)
y ==> [1, 2, 4, 7, 8]
idx ==> [0, 0, 1, 2, 2, 2, 3, 4, 4]
count ==> [2, 1, 3, 1, 2]
相关用法
- Python tf.unique用法及代码示例
- Python tf.unstack用法及代码示例
- Python tf.unravel_index用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.math.special.fresnel_cos用法及代码示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代码示例
- Python tf.compat.v1.layers.conv3d用法及代码示例
- Python tf.Variable.__lt__用法及代码示例
- Python tf.keras.metrics.Mean.merge_state用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.unique_with_counts。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。