用法
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.experimental.SqlDataset.unbatch用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.reduce用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.as_numpy_iterator用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.concatenate用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.cardinality用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.padded_batch用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.take用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.interleave用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.shard用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.take_while用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.from_tensors用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.cache用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.scan用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.get_single_element用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.prefetch用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.map用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.zip用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.make_initializable_iterator用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.shuffle用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.bucket_by_sequence_length用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.data.experimental.SqlDataset.unique。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。