Merge pull request #25437 from kweinmeister:master
PiperOrigin-RevId: 232760829
This commit is contained in:
commit
99f96d47b5
@ -1152,6 +1152,18 @@ class DatasetV2(object):
|
||||
def filter(self, predicate):
|
||||
"""Filters this dataset according to `predicate`.
|
||||
|
||||
```python
|
||||
d = tf.data.Dataset.from_tensor_slices([1, 2, 3])
|
||||
|
||||
d = d.filter(lambda x: x < 3) # [1, 2]
|
||||
|
||||
# `tf.math.equal(x, y)` is required for equality comparison
|
||||
def filter_fn(x):
|
||||
return tf.math.equal(x, 1)
|
||||
|
||||
d = d.filter(filter_fn) # [1]
|
||||
```
|
||||
|
||||
Args:
|
||||
predicate: A function mapping a nested structure of tensors (having shapes
|
||||
and types defined by `self.output_shapes` and `self.output_types`) to a
|
||||
|
Loading…
Reference in New Issue
Block a user