赞
踩
一、随机森林的分类器 (RandomForestClassififier)
随机森林分类器的重要参数:criterion、 splitter、max_depth、min_samples_leaf &min_samples_split、max_features & min_impurity_decrease具体的使用可参考DecisionTreeClassifier重要参数、属性、接口(实现一棵树,随机性参数)这篇的使用。
n_estimators:森林中数木的数量,即基评估器的数量,这个参数的数量越大,模型的效果越好。
# 随机森林的重要属性之一:estimators_,查看森林中树的状况
例如:rfc.estimators_
random_state :用来表示生成同一片森林。
如:
- rfc = RandomForestClassifier(n_estimators=25,oob_score=True)
- rfc = rfc.fit(wine.data,wine.target)
- #重要属性oob_score_
- rfc.oob_score_
重要属性:.estimators_ 和 .oob_score_
有四个常用接口:apply, fit, predict和score。
二、随机森林的回归器(RandomForestRegressor )
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。