Would it be possible or sensible to add support for sample weights (at the observation level) to this package? Most scikit-learn estimators allow the user to pass a sample weight into the .fit() call (e.g., linear-regression or LightGBM). These is a key characteristic of many regression problems.
Normally this would be pretty simple to implement by just allowing a user to pass a sample_weight into the fit call. But given a Bayesian Bootstrap is already relying on weighting as opposed to resampling, maybe this doesn't make sense in this context.
Tagging @JulianWgs in case he has any thoughts.
Thanks!
Would it be possible or sensible to add support for sample weights (at the observation level) to this package? Most scikit-learn estimators allow the user to pass a sample weight into the
.fit()call (e.g., linear-regression or LightGBM). These is a key characteristic of many regression problems.Normally this would be pretty simple to implement by just allowing a user to pass a
sample_weightinto thefitcall. But given a Bayesian Bootstrap is already relying on weighting as opposed to resampling, maybe this doesn't make sense in this context.Tagging @JulianWgs in case he has any thoughts.
Thanks!