chronulus.estimator.base
Estimator
Base class for implementing estimators that process data through the API.
This class provides the foundation for creating specific estimators by handling session management and input type validation. Subclasses should implement specific estimation logic while inheriting the base functionality.
Attributes:
Name | Type | Description |
---|---|---|
estimator_name |
str
|
Name identifier for the estimator. Default is "EstimatorBase". |
estimator_version |
str
|
Version string for the estimator. Default is "1". |
prediction_version |
str
|
Version string for the prediction. Set to "1". |
estimator_id |
None
|
Identifier for a specific estimator instance, initialized as None. |
session |
Session
|
Session instance used for API communication. |
input_type |
Type[BaseModelSubclass]
|
Pydantic model class used for input validation. |
Notes
The BaseModelSubclass type variable ensures that input_type must be a subclass of pydantic.BaseModel, enabling automatic input validation.
Source code in src/chronulus/estimator/base.py
__init__(session, input_type)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session
|
Session
|
Active session instance for API communication. |
required |
input_type
|
Type[BaseModelSubclass]
|
Pydantic model class that defines the expected input data structure. |
required |