You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2023. It is now read-only.
Refactor yatsm.algorithms.postprocess.robust_record to be more general. This function can be simplified to be refit(yatsm, prefix, predictor) and this would allow other regression methods (e.g., a cross-validated Lasso) to be ran within the same context of redefining the coef and rmse within each segment of each ensemble model.
Shortcut robust_record as refit(yatsm, prefix='robust', predictor=rlm.RLM).
Also refactor yatsm map--robust option to --result_prefix so we can output coef/prediction maps from robust_coef, lasso_coef, theilsen_coef, etc...
Refactor
yatsm.algorithms.postprocess.robust_record
to be more general. This function can be simplified to berefit(yatsm, prefix, predictor)
and this would allow other regression methods (e.g., a cross-validated Lasso) to be ran within the same context of redefining thecoef
andrmse
within each segment of each ensemble model.Shortcut
robust_record
asrefit(yatsm, prefix='robust', predictor=rlm.RLM)
.Also refactor
yatsm map
--robust
option to--result_prefix
so we can output coef/prediction maps fromrobust_coef
,lasso_coef
,theilsen_coef
, etc...Config file specification:
where
RLM
is a pickled RLM prediction object.Merit: This should allow change to be fit using one method of prediction while also summarizing timeseries using other prediction methods.
The text was updated successfully, but these errors were encountered: