ray.data.Dataset.filter#
- Dataset.filter(fn: Callable[[Dict[str, Any]], bool] | Callable[[Dict[str, Any]], Iterator[bool]] | _CallableClassProtocol, *, compute: str | ComputeStrategy = None, concurrency: int | Tuple[int, int] | None = None, ray_remote_args_fn: Callable[[], Dict[str, Any]] | None = None, **ray_remote_args) Dataset [source]#
Filter out rows that don’t satisfy the given predicate.
You can use either a function or a callable class to perform the transformation. For functions, Ray Data uses stateless Ray tasks. For classes, Ray Data uses stateful Ray actors. For more information, see Stateful Transforms.
Tip
If you can represent your predicate with NumPy or pandas operations,
Dataset.map_batches()
might be faster. You can implement filter by dropping rows.Tip
If you’re reading parquet files with
ray.data.read_parquet()
, and the filter is a simple predicate, you might be able to speed it up by using filter pushdown; see Parquet row pruning for details.Examples
>>> import ray >>> ds = ray.data.range(100) >>> ds.filter(lambda row: row["id"] % 2 == 0).take_all() [{'id': 0}, {'id': 2}, {'id': 4}, ...]
Time complexity: O(dataset size / parallelism)
- Parameters:
fn – The predicate to apply to each row, or a class type that can be instantiated to create such a callable.
compute – This argument is deprecated. Use
concurrency
argument.concurrency – The number of Ray workers to use concurrently. For a fixed-sized worker pool of size
n
, specifyconcurrency=n
. For an autoscaling worker pool fromm
ton
workers, specifyconcurrency=(m, n)
.ray_remote_args_fn – A function that returns a dictionary of remote args passed to each map worker. The purpose of this argument is to generate dynamic arguments for each actor/task, and will be called each time prior to initializing the worker. Args returned from this dict will always override the args in
ray_remote_args
. Note: this is an advanced, experimental feature.ray_remote_args – Additional resource requirements to request from ray (e.g., num_gpus=1 to request GPUs for the map tasks).