python写一个随机森林算法
时间: 2023-02-26 09:03:07 浏览: 109
用Python实现随机森林算法.pdf
Python中实现随机森林算法很简单,只需要使用scikit-learn库中的RandomForestClassifier类即可。可以使用以下代码来实现:from sklearn.ensemble import RandomForestClassifier# 创建随机森林模型rfc = RandomForestClassifier()# 训练模型rfc.fit(X_train, y_train)# 预测结果y_pred = rfc.predict(X_test)
阅读全文