estimator
Protocol definition for CUSUM parameter estimating schemas.
This module defines IEstimatingSchema, the interface for estimation
components that are trained on a learning sample and optionally updated
online.
- class pysatl_cpd.algorithms.online.cusum.abstracts.estimator.ISchemaEstimates[source]
Bases:
TypedDict
- class pysatl_cpd.algorithms.online.cusum.abstracts.estimator.IEstimatingSchema[source]
-
Interface for estimating schemas used by generalized CUSUM.
Implementations estimate model parameters from training data, optionally update them with new observations, and expose current estimates.
- abstract property estimates: EstimatesT
Current estimated parameters.
- Return type:
EstimatesT