你能帮我写一个关于随机森林模型的python代码吗?
时间: 2024-02-06 09:02:19 浏览: 81
随机森林分类模型Python代码.txt
当然可以,以下是一个简单的使用随机森林模型进行分类的Python代码示例:
```python
# 导入所需的库和模块
from sklearn.ensemble import RandomForestClassifier
from sklearn.datasets import make_classification
from sklearn.model_selection import train_test_split
# 生成一个样本数据集
X, y = make_classification(n_samples=1000, n_features=10, n_informative=5, n_classes=2, random_state=1)
# 将数据集分为训练集和测试集
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=1)
# 定义随机森林模型
rfc = RandomForestClassifier(n_estimators=100, max_depth=5, random_state=1)
# 训练随机森林模型
rfc.fit(X_train, y_train)
# 使用测试集进行预测
y_pred = rfc.predict(X_test)
# 输出模型的准确性
print("Accuracy:", rfc.score(X_test, y_test))
```
以上代码中,我们使用`make_classification`函数生成了一个包含1000个样本和10个特征的数据集,并将其分为训练集和测试集。然后,我们定义了一个包含100个决策树的随机森林模型,并使用训练集进行训练。最后,我们使用测试集进行预测,并输出模型的准确性。
阅读全文