transform#

Transform base classes for data processing.

This module provides abstract base classes for implementing data transformations with state management capabilities. Transforms follow the scikit-learn pattern with separate fit and transform phases, and support serialization through the Stateful interface.

Classes#

Transform()

Abstract base class for data transformations.

TransformPipeline(**data)

Sequential pipeline of transformations.