Simple and crude understanding and implementation of machine learning integrated learning (a): Introduction to integrated learning algorithms, machine learning two core tasks, integrated learning and boosting Bagging

Integrated learning

learning target

  • Understand two core tasks of solving major integrated learning
  • You know the principles of integrated bagging
  • We know the process of establishing a random decision tree forest
  • Why do I need to know random with replacement (Bootstrap) sampling
  • Random Forest algorithm to achieve application RandomForestClassifie
  • We know the principle of boosting integration
  • Know the difference between bagging and boosting the
  • Learn gbdt implementation process
    Here Insert Picture Description

5.1 Introduction ensemble learning algorithm

1 What is an integrated learning

[Image dump the chain fails, the source station may have security chain mechanism, it is recommended to save the picture down uploaded directly (img-FUywK5ZD-1583250286371) (../ images / ensemble1.png)]

Integrated learning to solve the problem through the establishment of a single predict several models. It works by generating a plurality of classifiers / model , independently learn and make predictions. Finally, these projections into a combined prediction, and therefore better than any single classifier to make a prediction.

2 Review: machine learning two core tasks

[Image dump the chain fails, the source station may have security chain mechanism, it is recommended to save the picture down uploaded directly (img-dnD9oIGI-1583250286372) (../ images / ensemble2.png)]

3 Integrated Bagging and boosting learning

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-1NgqFpid-1583250286372)(../images/ensemble3.png)]

As long as a single classifier performance is not too bad, the result of the integration of learning is always better than a single classifier.

Published 627 original articles · won praise 839 · views 110 000 +

Guess you like

Origin blog.csdn.net/qq_35456045/article/details/104644870