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
Add the BoostFromAverage output to the init_score on the train_set Dataset. It seems to me that they serve the same function - that is, reducing training time by allowing the model to have some previous knowledge of the data before the first boosting round. BoostingFromAverage is a simply a subset of the init_score functionality.
Motivation
This allows us to recover the mean of the target variable after training and then when saving the model. There are many instances where we may not have access to the label data (and therefore the mean) after saving a model.
Finally, and maybe most importantly, this would allow a user better insights into how the model is working at each stage and would help with model interpretability #4065 and #3095.
Description
Something like, writing the results from BoostFromAverage back to the model here
Summary
Add the BoostFromAverage output to the init_score on the train_set Dataset. It seems to me that they serve the same function - that is, reducing training time by allowing the model to have some previous knowledge of the data before the first boosting round. BoostingFromAverage is a simply a subset of the
init_score
functionality.Motivation
This allows us to recover the mean of the target variable after training and then when saving the model. There are many instances where we may not have access to the label data (and therefore the mean) after saving a model.
This is also the equivalent to the intercept in EBMs so aids in comparisons of LightGBM and EBM. See #3905 (comment) and EBM intercept calculations.
Finally, and maybe most importantly, this would allow a user better insights into how the model is working at each stage and would help with model interpretability #4065 and #3095.
Description
Something like, writing the results from
BoostFromAverage
back to the model hereLightGBM/src/boosting/gbdt.cpp
Line 344 in d517ba1
References
The text was updated successfully, but these errors were encountered: