-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
GBM Prediction Interval #4210
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
Comments
ping @pprett |
Could you post a minimal code ? If its too long use gists |
No. Unfortunately it's part of complex system. I'll try to find equivalent example. |
@AlexanderKUA you are saying that your loss='ls' model is outside the prediction interval? There might be multiple reasons: a) model is a poor approximation for the quanitles/mean or b) your data is heavily skewed, then the mean might be indeed outside the prediction interval. Can you show a histogram of your target variable? |
I made histograms(and examples of appropriate prediction intervals) of my target variable (please take into account that it is in range [0, 100]). case #2 case #3 case #6 As you can see with case6(last) everything looks ok, but target variable distribution is also skewed as in previous(case2, case3). Thanks in advance |
One possibility is to estimate quantiles conditional on |
I need to get prediction interval for GBM model (loss='ls'). I'm using this example as a basis
My model parameters are chosen by GridSearch, than I'm training with the same params 2 models for lower and higher bounds.
But my Prediction curve sometimes is outside of Prediction interval. It looks odd. How can I solve such issue?
The text was updated successfully, but these errors were encountered: