我正在使用带有cross_validate
的LGBMClassifier Scikit-Learn。我想设置force_col_wise=True
,因为自动选择需要很长时间。
Auto-choosing col-wise multi-threading, the overhead of testing was 47.296749 seconds.
You can set `force_col_wise=true` to remove the overhead.
但我在文档中找不到任何与此相关的东西。该怎么做呢?
https://lightgbm.readthedocs.io/en/latest/pythonapi/lightgbm.LGBMClassifier.html
https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_validate.html
发布于 2021-02-09 12:33:09
尝试在参数列表中包含以下内容:'force_col_wise':'true‘
https://stackoverflow.com/questions/65624278
复制相似问题