Tag

Boosting

1 views collected around this technical thread.

Model Perspective
Model Perspective
Jan 21, 2023 · Artificial Intelligence

Master Ensemble Learning: Bagging, Boosting, and Stacking with Python

This tutorial explains the concepts of ensemble learning, compares the three main ensemble strategies—Bagging, Boosting, and Stacking—and provides complete Python code using scikit‑learn to implement each method on the Iris dataset.

BoostingMachine LearningPython
0 likes · 10 min read
Master Ensemble Learning: Bagging, Boosting, and Stacking with Python
Model Perspective
Model Perspective
Oct 9, 2022 · Artificial Intelligence

Mastering AdaBoost: How Boosting Turns Weak Learners into Strong Models

This article provides a comprehensive overview of the AdaBoost algorithm, explaining its boosting principles, how it computes error rates, determines weak learner weights, updates sample weights, and combines classifiers for both classification and regression tasks, while also covering loss‑function optimization, regularization, and practical advantages and drawbacks.

AdaBoostBoostingMachine Learning
0 likes · 9 min read
Mastering AdaBoost: How Boosting Turns Weak Learners into Strong Models
Model Perspective
Model Perspective
Oct 8, 2022 · Artificial Intelligence

How Ensemble Learning Boosts Model Performance: A Comprehensive Overview

Ensemble learning combines multiple individual models—either homogeneous or heterogeneous—using strategies such as boosting, bagging, averaging, voting, or stacking to create a stronger learner, and this article explains its principles, key algorithms, and combination methods in detail.

BoostingMachine Learningbagging
0 likes · 8 min read
How Ensemble Learning Boosts Model Performance: A Comprehensive Overview
Model Perspective
Model Perspective
Sep 27, 2022 · Artificial Intelligence

Master XGBoost: Boosting Trees Explained with Python Code

This article explains the core concepts of XGBoost as a boosting tree algorithm, describes how it builds ensembles of decision trees to predict outcomes, and provides complete Python implementations for classification and regression using the Scikit-learn interface, along with visualizations of trees and feature importance.

BoostingMachine LearningPython
0 likes · 4 min read
Master XGBoost: Boosting Trees Explained with Python Code
Python Programming Learning Circle
Python Programming Learning Circle
Dec 21, 2021 · Artificial Intelligence

Introduction to CatBoost: Features, Advantages, and Practical Implementation

This article introduces CatBoost, outlines its key advantages such as automatic handling of categorical features, symmetric trees, and feature combination, and provides a step‑by‑step Python tutorial—including data preparation, model training, visualization, and feature importance analysis—using a CTR prediction dataset.

BoostingCatBoostMachine Learning
0 likes · 5 min read
Introduction to CatBoost: Features, Advantages, and Practical Implementation
Sohu Tech Products
Sohu Tech Products
Jun 17, 2020 · Artificial Intelligence

Ensemble Learning: Concepts, Methods, and Applications in Deep Learning

This article provides a comprehensive overview of ensemble learning, explaining its principles, common classifiers, major ensemble strategies such as bagging, boosting, and stacking, and demonstrates practical deep‑learning ensemble techniques like Dropout, test‑time augmentation, and Snapshot ensembles with code examples.

BoostingMachine Learningbagging
0 likes · 17 min read
Ensemble Learning: Concepts, Methods, and Applications in Deep Learning
DataFunTalk
DataFunTalk
Oct 14, 2019 · Artificial Intelligence

Advances in Short Video Recommendation: Multi‑Objective Optimization and Model Enhancements

This article presents a comprehensive overview of short‑video recommendation at UC, covering business background, system architecture, the evolution from LR to Wide & Deep models, multi‑objective loss design with positive‑sample weighting, graph‑embedding fusion, time‑weighted loss, continuity modeling, a Boosting‑based WnD solution, and future research directions.

Boostingdeep learninggraph embedding
0 likes · 11 min read
Advances in Short Video Recommendation: Multi‑Objective Optimization and Model Enhancements
Qunar Tech Salon
Qunar Tech Salon
Apr 17, 2019 · Artificial Intelligence

Understanding AdaBoost: Theory, Scikit‑learn Library, and Practical Implementation in Python

This article introduces the AdaBoost algorithm, explains its boosting principle, describes the AdaBoostClassifier and AdaBoostRegressor classes in scikit‑learn, provides a complete Python example with data loading, model training, prediction, evaluation, and visualisation, and discusses the algorithm’s advantages, disadvantages, and detailed iterative process.

AdaBoostBoostingMachine Learning
0 likes · 12 min read
Understanding AdaBoost: Theory, Scikit‑learn Library, and Practical Implementation in Python