predictor#

Prediction model interfaces and base classes.

This module provides abstract base classes for implementing prediction models with state management capabilities. Predictors follow the scikit-learn pattern with separate fit and predict phases, and support serialization through the Stateful interface.

Classes#

BatchPredictor()

Abstract base class for batch prediction models.

HyperParams(**data)

Base configuration for model hyperparameters.

Predictor()

Abstract base class for prediction models.