我在数据上使用RandomForest回归器,可以看到oob得分为0.83。我不确定是怎么回事。我的意思是我的目标是10 ^ 7范围内的较高值。因此,如果是MSE,则应该更高。我不明白0.83在这里表示什么。
我正在使用sklearn工具包的python的RandomForestRegressor。
我做
模型= RandomForestRegressor(max_depth = 7,n_estimators = 100,oob_score = True,n_jobs = -1)model.fit(trainX,trainY)
然后我看到了model.oob_score_,得到的值像0.83809026152005295
@莫莫 我正在使用python的sklearn.ensemble的RandomForestRegressor。我只是使用类似的模型
—
user34790 2013年