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
- as.h2o() in R to upload files to h2o environment takes a long time
- Why connection is terminating
- Word2Vec Sentiment Classification with R and H2O
- h2o.runif() always returns the same vector
- Why does gbm() give different results than h2o.gbm() in this minimal example?
- Merging columns (h2o.merge) using H2O in SparkR
- How to cast data from long to wide format in H2O?
- Combine search engine and machine learning
- detect if H2O instance is already running in R
- How to create a loop based on h2o package env. correctly
- How can I tell h2o deep learning grid to have AUC instead of residual deviance
- How to run Sparkling Water example with spark in local mode
- Understanding Sparkling Water
- Subsetting in H2O R
- What do you need to watch out for when using cross-validation with GLM lambda search?
Related Questions in GBM
- Is Gradient Boosting regression be more accurate (lower MSE) than the random forest?
- Error while running varImp(gbm_model)
- Choosing a sample rate for GBM models
- Why does gbm() give different results than h2o.gbm() in this minimal example?
- GBM handling factor variables, worried about too many factors
- How can I offset exposures in a gbm model in R?
- number of trees in h2o.gbm
- H2O GBM error in R: 404 not found (H2OKeyNotFoundArgumentException)
- subscript out of bounds in gbm function
- R: how can I find C/C++ source code from the gbm package?
- mlr3: obtaining response (predicted survival time) from surv.gbm
- Making sense of gbm survival prediction model
- How to fix PSOCKcluster error when running GBM
- gbm.step error: Error: Must subset columns with a valid subscript vector
- Representing a class by negative number for training in GBM in R
Related Questions in INTERPRETATION
- Interpretation of trend in two models
- When to use PHP's variable variables?
- Jenkins Build With Parameters Only Taking First Parameter
- Interpreting categorical variable when fixed effect model in 'plm' has no intercept
- Normal Probability Plot interpretation
- Online c# interpreter security issues
- Preserve Interpretation in Bash Variable
- Handling category, float and int type features while using LIME for model interpretation
- Interpreting logistic regression coefficients of scaled features
- redirect every request to index.php and interpret the request
- How to interpret decimal coefficients from a poisson regression inflated in 1
- For...in questions (Python)
- Bash avoid filename interpretation
- What are the typical application uses of reverse/stride/pread and pwrite?
- Printing chars as Integers
Related Questions in LIFTING
- Applying lifted functions to tuples (of arbitrary length) in Haskell
- scala lifting function having with a collection as argument
- Scala lift from List[A] to List[Option[A]]
- What are the steps for deducing this pointfree code?
- Lift to fix the *inside* of a monad transformer stack
- How to lift a fold|map|both into the Either monad?
- scala quasiquotes string variable lifting in multiple steps
- Why does this expression have a valid type?
- Monad transformer – Explicit lifting
- Lift instance of class with a `MonadIO` type-variable to the transformed monad
- Combining predicates in a functional way
- why is it showing that removeTour is not defined or not a function in the code . In the lifting up concept
- Converting f(x) into f([x]) using decorator in python
- How to rewrite ado notation as general Applicative lifting, respecting evaluation order?
- Translating armv7m instructions to llvm IR
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 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.