-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Post process negative loss #16
Comments
Counter measure 3 might be enhanced by recording each tree and the threshold it would have passed (but did not, since the comparison was stricter), and inserting it into the ensemble once (in retrospect) the threshold is loose enough. |
Counter measure 2 may be realized by keeping a history of enhancements ( |
In dp_rmse.py, the lines
may yield (large) negative values – unreasonable for rMSE loss values.
These may be some viable counter measures:
prev_loss < current_loss
according to a (yet to be determined) schedule step by step, so that new trees get a chance to join the ensemble again (which would otherwise be highly unlikely).The text was updated successfully, but these errors were encountered: