美文网首页心理简友广场想法
机器学习:5.4 Stacking

机器学习:5.4 Stacking

作者: Cache_wood | 来源:发表于2022-04-17 20:57 被阅读0次

@[toc]

  • Combine multiple base learners to reduce variance

    • Base learners can be different model types
    • Linearly combine base learners outputs by learned parameters
  • Widely used in competitions

  • bagging VS stacking

    • Bagging: bootstrap samples to get diversity

    • Stacking: different types of models extract different features

Multi-layer Stacking

  • Stacking base learners in multiple levels to reduce bias
    • Can use a different set of base learners at each level
  • Upper levels (e.g. L2) are trained on the outputs of the level below (e.g. L1)
    • Concatenating original inputs helps

Overfitting in Multi-layer Stacking

  • Train leaners from different levels on different data to alleviate
    overfitting

  • Split training data into A and B, train L_1 learners on A, run inference on B to generate training data for L_2 learners

  • Repeated k-fold bagging:

    • Train k models as in k-fold cross validation
    • Combine predictions of each model on out-of-fold data
    • Repeat step 1,2 by n times, average the n predictions of each example for the next level training

相关文章

  • 机器学习:5.4 Stacking

    @[toc] Combine multiple base learners to reduce varianceB...

  • Stacking Learning在分类问题中的使用

    建议先阅读以下文章 知乎:Kaggle机器学习之模型融合(stacking)心得 Blog:Stacking Mo...

  • 面试准备基础算法篇

    机器学习: 继承学习:bagging、boosting、stacking的区别 指标:准确率、召回率、f1、auc...

  • 数据挖掘4

    模型融合 内容介绍 Stacking Stacking就是当用初始训练数据学习出若干个基学习器之后,将这几个学习器...

  • 详解 Stacking 的 python 实现

    1. 什么是 stacking stacking 就是当用初始训练数据学习出若干个基学习器后,将这几个学习器的预测...

  • Stacking

    Stacking 阅读顺序由上至下: Stacking without z-index Stacking and ...

  • Ensemble

    集成学习(ensemble learning):Stacking,boosting,bagging(bootstr...

  • 机器学习-集成学习

    outline 集成学习 Boosting Bagging 随机森林 结合策略 Stacking 集成学习(ens...

  • 【机器学习】-Week5.4 Implementation No

    With neural networks, we are working with sets of matrice...

  • 深入z-index

    涉及“层叠顺序(stacking order)”,“层叠上下文(stacking context)”,“层叠水平(...

网友评论

    本文标题:机器学习:5.4 Stacking

    本文链接:https://www.haomeiwen.com/subject/cbeosrtx.html