当LightGBM.cv时,如果min_data_in_leaf设置的值比默认值(20)小的时候,就会报错:

LightGBMError: Reducing `min_data_in_leaf` with `feature_pre_filter=true` may cause unexpected behaviour for features that were pre-filtered by the larger `min_data_in_leaf`.
You need to set `feature_pre_filter=false` to dynamically change the `min_data_in_leaf`.

 

在网上查了很多资料,说是要在dataset之前设置feature_pre_filter,但是有的人又说这个参数已经删除了,翻看官网也没有看到很好的解决方法:https://github.com/optuna/optuna/issues/1718

反正我们就默认这个参数feature_pre_filter已经删除了,如果我们调参时min_data_in_leaf 的最佳值大于20时,就可以保留min_data_in_leaf参数,如果小于时,就删除这个参数。就可以运行了

 

相关文章:

  • 2021-11-04
  • 2021-07-29
  • 2022-12-23
  • 2022-12-23
  • 2022-01-09
  • 2021-11-10
  • 2022-01-20
猜你喜欢
  • 2021-06-14
  • 2021-08-28
  • 2021-08-15
  • 2021-06-06
  • 2021-11-09
相关资源
相似解决方案