欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

训练随机森林回归模型 RandomForestRegressor

程序员文章站 2022-05-26 19:10:02
...

训练随机森林回归模型 RandomForestRegressor

bootstrap 表示是够有放回抽样,还是不放回抽样

# 训练随机森林回归模型 RandomForestRegressor
from sklearn.ensemble import RandomForestRegressor
from sklearn import datasets
​
boston = datasets.load_boston()
features = boston.data[:, 0:2]
target = boston.target
# 训练模型   bootstrap 表示是够有放回抽样,还是不放回抽样
randomforest = RandomForestRegressor(random_state=0, n_jobs=-1)
model = randomforest.fit(features, target)