[ENH] online probabilistic regression meta-algorithms wishlist #464
Labels
feature request
New feature or request
good first issue
Good for newcomers
implementing algorithms
Implementing algorithms, estimators, objects native to skpro
module:regression
probabilistic regression module
Implementation wishlist for simple online probabilistic regression meta-algorithms.
Mixture
with weights by the number of samples in each batch. Batches under a certain size (hyperparameter) are ignored; or, collected, until a minimum size is reached (hyperparameter).n_remember
from thefit
data, and pool this with data in a new batch. At eachupdate
, bootstrap so the remembered sample staysn_remember
size. PredictMixture
fromfit_predict
on the remembered plus new sample, inupdate
, with appropriate weights.Further, general Bayesian algorithms will support a Bayesian
update
, this should be included in the API design for Bayesian estimators.The text was updated successfully, but these errors were encountered: