Top 10 Machine Learning Libraries to Bookmark

Top 10 Machine Learning Libraries to Bookmark

Source: Machine Learning Algorithms Python is arguably the sharpest weapon for machine learning; conversely, machine learning provides the power to expand influence and recreate brilliance for Python. The two complement each other to such an extent that whenever machine learning is mentioned, people naturally think of Python. Although this perspective may be somewhat narrow, there … Read more

LightGBM: A Gradient Boosting Tree Algorithm for Large-Scale Data

LightGBM: A Gradient Boosting Tree Algorithm for Large-Scale Data

1 Algorithm Introduction LightGBM (Light Gradient Boosting Machine, hereinafter referred to as LGBM) is an efficient and scalable machine learning algorithm based on Gradient Boosted Decision Trees (GBDT). As a member of the GBDT framework algorithms and a successor to the XGB algorithm, LGBM effectively integrates a series of advantages from previous GBDT algorithms, including … Read more

Will XGBoost Algorithm Replace Linear Models?

Will XGBoost Algorithm Replace Linear Models?

For most data analysts, regression models are undoubtedly one of the fundamental skills. At the beginning of this century, many investment banks used the application of regression models as a standard for evaluating analysts. For over a decade, regression models have maintained a significant presence in all analyses and predictions. However, in recent years, a … Read more

Comparison and Tuning of XGBoost, LightGBM, and CatBoost Algorithms

Comparison and Tuning of XGBoost, LightGBM, and CatBoost Algorithms

Machine Learning Author: louwill Machine Learning Lab Although deep learning is currently dominant, Boosting algorithms represented by XGBoost, LightGBM, and CatBoost still have a wide range of applications. Excluding the unstructured data applications suitable for deep learning, such as images, text, speech, and video, Boosting algorithms remain the first choice for structured data with fewer … Read more

Comparison of XGBoost and LightGBM for Time Series Prediction

Comparison of XGBoost and LightGBM for Time Series Prediction

XGBoost and LightGBM are currently very popular tree-based machine learning models, both demonstrating efficient performance. However, they have different characteristics in certain situations. Simple Comparison of XGBoost and LightGBM Training Speed LightGBM has a significant advantage over XGBoost in terms of training speed. This is because LightGBM uses some efficient algorithms and data structures, such … Read more

CatBoost vs. LightGBM vs. XGBoost: Who is the King of Boosting Algorithms?

CatBoost vs. LightGBM vs. XGBoost: Who is the King of Boosting Algorithms?

Source: I learned at Xuecheng This article is about 3400 words and is recommended to read in 5 minutes. It evaluates the performance of models from the perspectives of speed and accuracy. Boosting algorithms are a class of machine learning algorithms that build a strong classifier by iteratively training a series of weak classifiers (usually … Read more

Understanding XGBoost and LightGBM: Mainstream Ensemble Algorithms

Understanding XGBoost and LightGBM: Mainstream Ensemble Algorithms

Click on the “MLNLP” above to select the “Star” public account Heavyweight content delivered to you first This article is the third in a series on decision trees, mainly introducing mainstream ensemble algorithms based on the Boosting framework, including XGBoost and LightGBM. Here is the complete mind map: XGBoost XGBoost is a tool for large-scale … Read more

Comparison and Tuning of XGBoost, LightGBM, and CatBoost Algorithms

Comparison and Tuning of XGBoost, LightGBM, and CatBoost Algorithms

Author: louwill Although deep learning is currently very popular, Boosting algorithms represented by XGBoost, LightGBM, and CatBoost still have a wide range of applications. Leaving aside the applications of deep learning suitable for unstructured data such as images, text, speech, and video, Boosting algorithms remain the first choice for structured data with fewer training samples. … Read more

High-Scoring Model Solution in Machine Learning Competition Using XGBoost, LightGBM, and LSTM

High-Scoring Model Solution in Machine Learning Competition Using XGBoost, LightGBM, and LSTM

Programmers transitioning to AI are following this account๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡ 1 Data Exploration and Preprocessing 1.1 Competition Review Background As the world’s largest clean energy source, solar energy is renewable and non-polluting compared to coal and oil; as long as there is sunlight, there is solar energy. Therefore, the utilization of solar energy has been prioritized as … Read more

Understanding CatBoost Alongside XGBoost and LightGBM

Understanding CatBoost Alongside XGBoost and LightGBM

This article provides an overview of the content: 1. Introduction to CatBoost CatBoost is a machine learning library open-sourced by the Russian search giant Yandex in 2017 and is a type of Boosting algorithm. CatBoost, along with XGBoost and LightGBM, is known as one of the three mainstream tools for GBDT, all of which are … Read more