其他分享
首页 > 其他分享> > 关于RandomForestRegressor

关于RandomForestRegressor

作者:互联网

RandomForest的分类类是RandomForestClassifier,而RandomForestRegressor属于回归类

参数

- n_estimators
也就是弱学习器的最大迭代次数,或者说最大的弱学习器的个数,默认是10。一般来说n_estimators太小,容易欠拟合,n_estimators太大,又容易过拟合,一般选择一个适中的数值

- n_jobs
默认值为None,``-1``表示使用所有处理器

- random_state
如果是int,则random_state是随机数生成器使用的种子

标签:RandomForestRegressor,random,生成器,拟合,state,关于,estimators
来源: https://www.cnblogs.com/rener0424/p/11330793.html