Difference between revisions of "LightGBM"

From
Jump to: navigation, search
m
m
Line 17: Line 17:
 
* [http://en.wikipedia.org/wiki/Boosting_(machine_learning) Boosting | Wikipedia]
 
* [http://en.wikipedia.org/wiki/Boosting_(machine_learning) Boosting | Wikipedia]
 
* [http://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/boosted-decision-tree-regression Boosted Decision Tree Regression | Microsoft]
 
* [http://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/boosted-decision-tree-regression Boosted Decision Tree Regression | Microsoft]
* [http://towardsdatascience.com/boosting-algorithm-gbm-97737c63daa3 Boosting algorithm: GBM | SauceCat - Towards Data Science]
 
  
 +
Microsoft's gradient boosting framework that uses tree based learning algorithms. It is designed to be distributed and efficient by using histogram-based algorithms, which bucket continuous feature (attribute) values into discrete bins. This speeds up training and reduces memory usage.
  
It is also known as Multiple Additive Regression Trees (MART), Boosted Decision Tree Regression, and Gradient Boosted Regression Trees (GBRT).
+
<youtube>OQHlmscvkRI</youtube>
 
+
<youtube>V5158Oug4W8</youtube>
<youtube>0Xc9LIb_HTw</youtube>
 
<youtube>wPqtzj5VZus</youtube>
 

Revision as of 12:01, 17 August 2020

YouTube search... ...Google search

Microsoft's gradient boosting framework that uses tree based learning algorithms. It is designed to be distributed and efficient by using histogram-based algorithms, which bucket continuous feature (attribute) values into discrete bins. This speeds up training and reduces memory usage.