计算两个数字或字符串列表之间的差异。
用法
tf.raw_ops.ListDiff(
x, y, out_idx=tf.dtypes.int32, name=None
)
参数
-
x
一个Tensor
。一维。要保持的值。 -
y
一个Tensor
。必须与x
具有相同的类型。一维。要删除的值。 -
out_idx
一个可选的tf.DType
来自:tf.int32, tf.int64
。默认为tf.int32
。 -
name
操作的名称(可选)。
返回
-
Tensor
对象的元组(out,idx)。 -
out
一个Tensor
。具有与x
相同的类型。 -
idx
Tensor
类型为out_idx
。
给定一个列表 x
和一个列表 y
,此操作返回一个列表 out
,它表示 x
中但不在 y
中的所有值。返回的列表 out
的排序顺序与 x
中出现的数字相同(保留重复项)。此操作还返回一个列表 idx
,它表示 x
中每个 out
元素的位置。换一种说法:
out[i] = x[idx[i]] for i in [0, 1, ..., len(out) - 1]
例如,给定这个输入:
x = [1, 2, 3, 4, 5, 6]
y = [1, 3, 5]
此操作将返回:
out ==> [2, 4, 6]
idx ==> [1, 3, 5]
相关用法
- Python tf.raw_ops.LinSpace用法及代码示例
- Python tf.raw_ops.LogSoftmax用法及代码示例
- Python tf.raw_ops.L2Loss用法及代码示例
- Python tf.raw_ops.LSTMBlockCell用法及代码示例
- Python tf.raw_ops.LogicalOr用法及代码示例
- Python tf.raw_ops.LessEqual用法及代码示例
- Python tf.raw_ops.LeftShift用法及代码示例
- Python tf.raw_ops.Log1p用法及代码示例
- Python tf.raw_ops.LogicalNot用法及代码示例
- Python tf.raw_ops.Lgamma用法及代码示例
- Python tf.raw_ops.Less用法及代码示例
- Python tf.raw_ops.LRN用法及代码示例
- Python tf.raw_ops.Log用法及代码示例
- Python tf.raw_ops.LogicalAnd用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代码示例
- Python tf.raw_ops.BatchMatMul用法及代码示例
- Python tf.raw_ops.OneHot用法及代码示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.raw_ops.ListDiff。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。