TypeError: RandomForestRegressor.__init__() got an unexpected keyword argument 'num_leaves'
时间: 2023-12-07 16:04:56 浏览: 61
TypeError: _queue_reduction(): incompatible function arguments.
这个错误是因为在使用RandomForestRegressor时,传入了一个不支持的参数'num_leaves'。RandomForestRegressor是随机森林回归模型,它并不支持num_leaves参数。如果你想使用num_leaves参数,可以考虑使用LightGBM模型。LightGBM是一个基于决策树的梯度提升框架,支持num_leaves参数。
阅读全文