Clearly separate fit
and update
steps for all ensemble assimilation algorithms
#5628
Labels
Milestone
fit
and update
steps for all ensemble assimilation algorithms
#5628
Is your feature request related to a problem? Please describe.
All ensemble based assimilation algorithms involve a fitting procedure of ensemble to some parametric or semi-parametric model.
After the
fit
, it will employ anupdate
to the realizations, based on the fit.All statistical issues for ensemble based methods reside within the
fit
part of the algorithm.To allow us to
will become much simpler if we clearly separate the
fit
and theupdate
.Describe the solution you'd like
Create the API so that we at least have
fit
andupdate
, similar tofit
andpredict
in sklearn.Note, in the
iterative_ensemble_smoother
we almost have this, but thefit
andpredict
reside within the iterative procedure, while I would argue it should be outside.Describe alternatives you've considered
Trying to solve the listed problems above without performing this separation is a difficult task.
The text was updated successfully, but these errors were encountered: