用法
filter(
predicate, name=None
)
參數
-
predicate
將數據集元素映射到布爾值的函數。 -
name
(可選。) tf.data 操作的名稱。
返回
-
Dataset
Dataset
包含此數據集的元素,其中predicate
是True
。
根據 predicate
過濾此數據集。
dataset = tf.data.Dataset.from_tensor_slices([1, 2, 3])
dataset = dataset.filter(lambda x:x < 3)
list(dataset.as_numpy_iterator())
[1, 2]
# `tf.math.equal(x, y)` is required for equality comparison
def filter_fn(x):
return tf.math.equal(x, 1)
dataset = dataset.filter(filter_fn)
list(dataset.as_numpy_iterator())
[1]
相關用法
- Python tf.data.FixedLengthRecordDataset.from_tensor_slices用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.from_generator用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.from_tensors用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.flat_map用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.repeat用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.cardinality用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.bucket_by_sequence_length用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.as_numpy_iterator用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.take_while用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.shard用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.group_by_window用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.unique用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.choose_from_datasets用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.rejection_resample用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.reduce用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.apply用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.skip用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.enumerate用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.scan用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.random用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.data.FixedLengthRecordDataset.filter。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。