Random Forests - Probability Estimates (+scikit-learn specific)

前端 未结 2 1021
被撕碎了的回忆
被撕碎了的回忆 2021-02-06 08:14

I am interested in understanding how probability estimates are calculated by random forests, both in general and specifically in Python\'s scikit-learn library (where probabilit

2条回答
  •  花落未央
    2021-02-06 09:09

    The probabilities returned by a forest are the mean probabilities returned by the trees in the ensemble (docs). The probabilities returned by a single tree are the normalized class histograms of the leaf a sample lands in.

提交回复
热议问题