计算两个数字或字符串列表之间的差异。
用法
tf.compat.v1.setdiff1d(
x, y, index_dtype=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.compat.v1.set_random_seed用法及代码示例
- Python tf.compat.v1.strings.length用法及代码示例
- Python tf.compat.v1.scatter_min用法及代码示例
- Python tf.compat.v1.summary.merge用法及代码示例
- Python tf.compat.v1.size用法及代码示例
- Python tf.compat.v1.scatter_add用法及代码示例
- Python tf.compat.v1.summary.FileWriter用法及代码示例
- Python tf.compat.v1.scatter_div用法及代码示例
- Python tf.compat.v1.space_to_batch用法及代码示例
- Python tf.compat.v1.string_split用法及代码示例
- Python tf.compat.v1.squeeze用法及代码示例
- Python tf.compat.v1.sparse_to_dense用法及代码示例
- Python tf.compat.v1.sparse_segment_sum用法及代码示例
- Python tf.compat.v1.scatter_update用法及代码示例
- Python tf.compat.v1.sparse_split用法及代码示例
- Python tf.compat.v1.string_to_number用法及代码示例
- Python tf.compat.v1.saved_model.simple_save用法及代码示例
- Python tf.compat.v1.scatter_nd_sub用法及代码示例
- Python tf.compat.v1.sparse_reduce_max用法及代码示例
- Python tf.compat.v1.shape用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.setdiff1d。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。