随机森林算法python代码
时间: 2023-04-11 15:01:01 浏览: 175
随机森林算法Python代码实现,ipynb格式
5星 · 资源好评率100%
以下是一个简单的随机森林算法的 Python 代码示例:
```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.predict([[0, 0, 0, 0]]))
```
希望这可以帮助你了解随机森林算法的基本实现。
阅读全文