About 122,000 results
Open links in new tab
  1. XGBoost - GeeksforGeeks

    Oct 24, 2025 · It is an optimized implementation of Gradient Boosting and is a type of ensemble learning method that combines multiple weak models to form a stronger model. XGBoost uses decision trees …

  2. XGBoost - Wikipedia

    The algorithm XGBoost works as Newton–Raphson in function space unlike gradient boosting that works as gradient descent in function space, a second order Taylor approximation is used in the loss …

  3. What is the XGBoost algorithm and how does it work?

    Apr 23, 2025 · What is XGBoost Algorithm? XGBoost is a machine learning algorithm that belongs to the ensemble learning category, specifically the gradient boosting framework. It utilizes decision trees as …

  4. What is XGBoost? - IBM

    XGBoost (eXtreme Gradient Boosting) is a distributed, open-source machine learning library that uses gradient boosted decision trees, a supervised learning boosting algorithm that makes use of gradient …

  5. What is XGBoost? An Introduction to XGBoost Algorithm in Machine ...

    Sep 11, 2025 · XGBoost is a boosting algorithm that uses bagging, which trains multiple decision trees and then combines the results. It allows XGBoost to learn more quickly than other algorithms but …

  6. What Is XGBoost and Why Does It Matter? | NVIDIA Glossary

    XGBoost, which stands for Extreme Gradient Boosting, is a scalable, distributed gradient-boosted decision tree (GBDT) machine learning library. It provides parallel tree boosting and is the leading …

  7. XGBoost - University of Washington

    XGBoost provides a parallel tree boosting (also known as GBDT, GBM) that solve many data science problems in a fast and accurate way. The same code runs on major distributed environment …

  8. XGBoost for R introduction

    Introduction XGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. It implements machine learning algorithms under the Gradient Boosting …

  9. XGBoost Explained: A Beginner’s Guide - Medium

    Mar 24, 2024 · At its core, XGBoost employs a technique called gradient boosting. This is where the algorithm starts by creating a simple decision tree and then iteratively adds more trees to the model, …

  10. XGBoost Deep Dive: From Decision Trees to Gradient Boosted Power

    May 2, 2025 · This post aims to unpack XGBoost step-by-step, clarifying key concepts like gradient fitting, sequential learning, stochasticity, and the role of the learning rate.