148 lines
5.2 KiB
Python
148 lines
5.2 KiB
Python
from typing import TYPE_CHECKING, Any, Dict, Optional, Tuple
|
|
|
|
from ray.data.preprocessor import Preprocessor, SerializablePreprocessorBase
|
|
from ray.data.preprocessors.utils import (
|
|
_PublicField,
|
|
migrate_private_fields,
|
|
)
|
|
from ray.data.preprocessors.version_support import SerializablePreprocessor
|
|
from ray.data.util.data_batch_conversion import BatchFormat
|
|
|
|
if TYPE_CHECKING:
|
|
from ray.air.data_batch_type import DataBatchType
|
|
from ray.data.dataset import Dataset
|
|
|
|
|
|
@SerializablePreprocessor(version=1, identifier="io.ray.preprocessors.chain")
|
|
class Chain(SerializablePreprocessorBase):
|
|
"""Combine multiple preprocessors into a single :py:class:`Preprocessor`.
|
|
|
|
When you call ``fit``, each preprocessor is fit on the dataset produced by the
|
|
preceeding preprocessor's ``fit_transform``.
|
|
|
|
Example:
|
|
>>> import pandas as pd
|
|
>>> import ray
|
|
>>> from ray.data.preprocessors import *
|
|
>>>
|
|
>>> df = pd.DataFrame({
|
|
... "X0": [0, 1, 2],
|
|
... "X1": [3, 4, 5],
|
|
... "Y": ["orange", "blue", "orange"],
|
|
... })
|
|
>>> ds = ray.data.from_pandas(df) # doctest: +SKIP
|
|
>>>
|
|
>>> preprocessor = Chain(
|
|
... StandardScaler(columns=["X0", "X1"]),
|
|
... Concatenator(columns=["X0", "X1"], output_column_name="X"),
|
|
... LabelEncoder(label_column="Y")
|
|
... )
|
|
>>> preprocessor.fit_transform(ds).to_pandas() # doctest: +SKIP
|
|
Y X
|
|
0 1 [-1.224744871391589, -1.224744871391589]
|
|
1 0 [0.0, 0.0]
|
|
2 1 [1.224744871391589, 1.224744871391589]
|
|
|
|
Args:
|
|
*preprocessors: The preprocessors to sequentially compose.
|
|
"""
|
|
|
|
def fit_status(self):
|
|
fittable_count = 0
|
|
fitted_count = 0
|
|
|
|
for p in self._preprocessors:
|
|
if p.fit_status() == Preprocessor.FitStatus.FITTED:
|
|
fittable_count += 1
|
|
fitted_count += 1
|
|
elif p.fit_status() in (
|
|
Preprocessor.FitStatus.NOT_FITTED,
|
|
Preprocessor.FitStatus.PARTIALLY_FITTED,
|
|
):
|
|
fittable_count += 1
|
|
else:
|
|
assert p.fit_status() == Preprocessor.FitStatus.NOT_FITTABLE
|
|
if fittable_count > 0:
|
|
if fitted_count == fittable_count:
|
|
return Preprocessor.FitStatus.FITTED
|
|
elif fitted_count > 0:
|
|
return Preprocessor.FitStatus.PARTIALLY_FITTED
|
|
else:
|
|
return Preprocessor.FitStatus.NOT_FITTED
|
|
else:
|
|
return Preprocessor.FitStatus.NOT_FITTABLE
|
|
|
|
def __init__(self, *preprocessors: SerializablePreprocessorBase):
|
|
super().__init__()
|
|
self._preprocessors = preprocessors
|
|
|
|
@property
|
|
def preprocessors(self) -> Tuple[SerializablePreprocessorBase, ...]:
|
|
return self._preprocessors
|
|
|
|
def _fit(self, ds: "Dataset") -> SerializablePreprocessorBase:
|
|
for preprocessor in self._preprocessors[:-1]:
|
|
ds = preprocessor.fit_transform(ds)
|
|
self._preprocessors[-1].fit(ds)
|
|
return self
|
|
|
|
def fit_transform(self, ds: "Dataset") -> "Dataset":
|
|
for preprocessor in self._preprocessors:
|
|
ds = preprocessor.fit_transform(ds)
|
|
return ds
|
|
|
|
def _transform(
|
|
self,
|
|
ds: "Dataset",
|
|
batch_size: Optional[int],
|
|
num_cpus: Optional[float] = None,
|
|
memory: Optional[float] = None,
|
|
concurrency: Optional[int] = None,
|
|
) -> "Dataset":
|
|
for preprocessor in self._preprocessors:
|
|
ds = preprocessor.transform(
|
|
ds,
|
|
batch_size=batch_size,
|
|
num_cpus=num_cpus,
|
|
memory=memory,
|
|
concurrency=concurrency,
|
|
)
|
|
return ds
|
|
|
|
def _transform_batch(self, df: "DataBatchType") -> "DataBatchType":
|
|
for preprocessor in self._preprocessors:
|
|
df = preprocessor.transform_batch(df)
|
|
return df
|
|
|
|
def __repr__(self):
|
|
arguments = ", ".join(
|
|
repr(preprocessor) for preprocessor in self._preprocessors
|
|
)
|
|
return f"{self.__class__.__name__}({arguments})"
|
|
|
|
def _determine_transform_to_use(self) -> BatchFormat:
|
|
# This is relevant for BatchPrediction.
|
|
# For Chain preprocessor, we picked the first one as entry point.
|
|
# TODO (jiaodong): We should revisit if our Chain preprocessor is
|
|
# still optimal with context of lazy execution.
|
|
return self._preprocessors[0]._determine_transform_to_use()
|
|
|
|
def _get_serializable_fields(self) -> Dict[str, Any]:
|
|
return {
|
|
"preprocessors": self._preprocessors,
|
|
}
|
|
|
|
def _set_serializable_fields(self, fields: Dict[str, Any], version: int):
|
|
# required fields
|
|
self._preprocessors = fields["preprocessors"]
|
|
|
|
def __setstate__(self, state: Dict[str, Any]) -> None:
|
|
"""Handle backwards compatibility for old pickled objects."""
|
|
super().__setstate__(state)
|
|
migrate_private_fields(
|
|
self,
|
|
fields={
|
|
"_preprocessors": _PublicField(public_field="preprocessors"),
|
|
},
|
|
)
|