if justFit:
warn(
"LSIIR: The parameter justFit is only available for reasons of backward "
"compatibility. You seem to intend to skip stabilization. Please from "
"now on use `max_stab_iter = 0` in that case and leave `justFit` "
"untouched. `justFit` will be removed in a future release.",
PendingDeprecationWarning,
)
When we are getting closer to the release of PyDynamic 3.0.0 we should consider the following deprecations:
Parameter
justFitinPyDynamic.model_estimation.fit_filter.LSIIRcan be removed, since the same is achieved by settingmax_stab_iterto 0. To warn about hte pending deprecation we could for example introduceat the very beginning of
PyDynamic.model_estimation.fit_filter.LSIIRlike in the intermediate commit for release 2.0.0d4a6fc6 some time before the actual release.
The functions
invLSIIRandinvLSIIR_uncinPyDynamic.model_estimation.fit_filterwhich we kept for reasons of not introducing another breaking change during the release of 2.0.0. For a start we could introduce at the beginning ofPyDynamic.model_estimation.fit_filter.invLSIIRlike in the intermediate commit d4a6fc6.