The above image is the H2O GBM classification model lift chart for training and validation data sets. I am confused it with the other lift charts I have seen. Normally the baseline will be 45 degrees and the lift curve used to be somewhat convex shape from the baseline curve. In the above figure if the green line shows the lift curve, why is it constant and coming down and touches the baseline? Also why the baseline is not 45 degree? Can anyone help me to interpret the model using the above graph? Is my model perform well?
Gain/Lift chart interpretation using H2OFlow
876 Views Asked by Kitooos At
1
There are 1 best solutions below
Related Questions in H2O
- Error while using predict function for h2o.deeplearning model on raster stack
- java.lang.AssertionError when trying to train certain datasets with h2o
- RestApiCommunicationException: H2O node http://10.159.20.11:54321 responded with
- How to prevent h2o cluster shutdown without notice using Python
- Can you specify a rotation in h2o's PCA function?
- How to deepcopy a fitted h2o.sklearn.H2OAutoMLRegressor object?
- Tuning of GBM model with offset column using h2o and R
- h2o.automl in R is not terminating, same code with e.g. randomForest works fine
- Upload csv and read it as h2o object in a shiny app
- Hybrid model (CNN +RF) hyperparameter optimization
- Is there an updated GLMBooklet.pdf for H2O.ai?
- Running H2o model prediction in Pysaprk dataframe
- h2o XGBoost unavailable on MacOS (Apple M1)
- Converting H2O MOJOmodels to Binary
- Recursive Feature Elimination with H2O Random Forest
Related Questions in GBM
- Why can't I use "predict" after I load a gbm computed with gbm.step?
- Importance scores for classification task derived via mlr3 and gbm packages
- Tuning of GBM model with offset column using h2o and R
- How to change the line type in the calibration.plot of the GBM package?
- Cross Validation in GBM and Decision Tree ERROR
- R - Cross Validation in GBM model and Decision Trees
- Unable to import Lightgbm in Jupyter notebook on Windows 10
- pipeline feature selection,Please tell me the difference and advantages and disadvantages of the two feature screening methods
- Rstudio not recognizing full function. Issue with settings?
- Comparision of variable importance plots in the randomForest and gbm package
- Obtain dmabuf fd for EGLImage
- Continuing to receive error in gbm.fit regarding variable type, despite having been checked rigorously
- Handling Categorical Input Attributes in Classification with GBM (caret package / R)
- Attempting to apply raster::predict to multiple raster stacks with BRT model and parallel processing
- Predictions failed for gbm method in caret train
Related Questions in INTERPRETATION
- binary file and interpretation in java script?
- Reproducing a cool chart - Better understanding reference classes in mutlinomial logistic regression
- Is platform-independency of java really because of the combination of interpretation and compilation?
- How to interpret inverse transformations estimates in linear regression?
- Locale inheritance after interpretation
- interpreting the value of estimate for odds ratio doing logistic regression in R
- How to interpret decimal coefficients from a poisson regression inflated in 1
- How to get SHAP values for caret models in R?
- How Python deals with redeclared function
- How does batch normalisation affect vanilla saliency (or other model interpretation) results?
- How to force simplification and avoid interpolation in simple SASS calculation?
- VScode not recognizing certain functions from the Scapy module: how to fix?
- xgb.importance in R some reference or articles?
- Fisher's exact test for different probability than 1
- logistic regression model pairwise comparisons
Related Questions in LIFTING
- In F#, how do I map/lift a function where the result is curried?
- why is it showing that removeTour is not defined or not a function in the code . In the lifting up concept
- Problems lifting up state in React
- Lifting member functions from a class template to a second class template over the first one
- How can i Lifting x86_64 assembly code to LLVM-IR?
- Scala: lift on Array
- onChange not firing for custom Child component
- Lifting an obfuscated stack machine to LLVM IR
- getting Data stored in an LLVM variable
- How to get data stored in memory pointed to by an llvm pointer
- Translating armv7m instructions into LLVM IR
- Translating armv7m instructions to llvm IR
- Haskell Monads and the liftIO I don't get it
- How to rewrite ado notation as general Applicative lifting, respecting evaluation order?
- Combining predicates in a functional way
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

The black line is not the baseline, but the cumulative capture rate. The capture rate is the proportion of all the events that fall into the group/bin. E.g. if 90 out of total 100 positive outcomes/events fall into the first bin, then the capture rate for that bin is 0.9.
The green line is the cumulative lift curve, so by definition the two lines converge at 1.
Whether your model performs well or not depends on your goal. According to the validation metrics, you could capture about 80% of the events by targeting only 50% of the population, which means lift of about 1.6.