Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hands-On Gradient Boosting with XGBoost and scikit-learn

You're reading from  Hands-On Gradient Boosting with XGBoost and scikit-learn

Product type Book
Published in Oct 2020
Publisher Packt
ISBN-13 9781839218354
Pages 310 pages
Edition 1st Edition
Languages
Author (1):
Corey Wade Corey Wade
Profile icon Corey Wade
Toc

Table of Contents (15) Chapters close

Preface 1. Section 1: Bagging and Boosting
2. Chapter 1: Machine Learning Landscape 3. Chapter 2: Decision Trees in Depth 4. Chapter 3: Bagging with Random Forests 5. Chapter 4: From Gradient Boosting to XGBoost 6. Section 2: XGBoost
7. Chapter 5: XGBoost Unveiled 8. Chapter 6: XGBoost Hyperparameters 9. Chapter 7: Discovering Exoplanets with XGBoost 10. Section 3: Advanced XGBoost
11. Chapter 8: XGBoost Alternative Base Learners 12. Chapter 9: XGBoost Kaggle Masters 13. Chapter 10: XGBoost Model Deployment 14. Other Books You May Enjoy

Comparing dart

The base learner dart is similar to gbtree in the sense that both are gradient boosted trees. The primary difference is that dart removes trees (called dropout) during each round of boosting.

In this section, we will apply and compare the base learner dart to other base learners in regression and classification problems.

DART with XGBRegressor

Let's see how dart performs on the Diabetes dataset:

  1. First, redefine X and y using load_diabetes as before:

    X, y = load_diabetes(return_X_y=True)
  2. To use dart as the XGBoost base learner, set the XGBRegressor parameter booster='dart' inside the regression_model function:

    regression_model(XGBRegressor(booster='dart', objective='reg:squarederror'))

    The score is as follows:

    65.96444746130739

The dart base learner gives the same result as the gbtree base learner down to two decimal places. The similarity of results is on account of the small dataset and the success of the gbtree...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime