用法
unique(
name=None
)
参数
-
name
(可选。) tf.data 操作的名称。
返回
-
一个
Dataset
。
丢弃 Dataset
的重复元素的转换。
使用此转换生成一个数据集,该数据集包含输入中每个唯一元素的一个实例。例如:
dataset = tf.data.Dataset.from_tensor_slices([1, 37, 2, 37, 2, 1])
dataset = dataset.unique()
sorted(list(dataset.as_numpy_iterator()))
[1, 2, 37]
相关用法
- Python tf.compat.v1.data.TextLineDataset.unbatch用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.from_tensors用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.filter用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.take_while用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.skip用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.bucket_by_sequence_length用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.sample_from_datasets用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.cardinality用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.as_numpy_iterator用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.zip用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.with_options用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.random用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.reduce用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.from_generator用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.snapshot用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.cache用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.range用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.rejection_resample用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.shard用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.batch用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.data.TextLineDataset.unique。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。