【问题标题】:is there way to ensemble the prediction other than the take the mean average?除了取平均值之外,还有其他方法可以整合预测吗?
【发布时间】:2019-07-29 14:49:49
【问题描述】:

现在我只取 3 个模型预测的平均值

predictions_model = [y_pred_xceptionAug,y_pred_Dense121_Aug,y_pred_resnet50Aug]
predictions = np.mean(predictions_model,axis=0)

除了取平均数之外,还有更好的集成方式吗?

【问题讨论】:

    标签: conv-neural-network voting ensemble-learning


    【解决方案1】:

    一种基于神经网络的方法是使用 3 个模型预测作为进一步神经网络的输入。

    更高级的方法包括 bootstrap aggregating,每个模型在整个数据集的一个子集上进行训练,然后在模型之间聚合预测。

    【讨论】:

      猜你喜欢
      • 2019-09-14
      • 2018-03-01
      • 2015-12-08
      • 2017-07-18
      • 1970-01-01
      • 2015-06-26
      • 2018-04-21
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多