python输出随机森林
时间: 2023-11-26 12:41:49 浏览: 59
随机森林的python代码
作为AI语言模型,我可以给你提供Python代码示例,可供参考:
```
from sklearn.ensemble import RandomForestClassifier
from sklearn.datasets import make_classification
# 生成随机数据集
X, y = make_classification(n_samples=1000, n_features=4,
n_informative=2, n_redundant=0,
random_state=0, shuffle=False)
# 创建随机森林分类器
clf = RandomForestClassifier(n_estimators=100, max_depth=2,
random_state=0)
# 训练模型
clf.fit(X, y)
# 输出随机森林分类器
print(clf)
```
运行该代码,将输出随机森林分类器的相关信息。
阅读全文