AnotherSamWilson / miceforest

Multiple Imputation with LightGBM in Python
MIT License
353 stars 31 forks source link

lightgbm updated verbosity and early stopping parameters #32

Closed samFarrellDay closed 2 years ago

samFarrellDay commented 2 years ago

Must now pass callbacks. Put the following into training calls where applicable:

callbacks = [
  lgb.early_stopping(stopping_rounds=25, verbose=0),
  lgb.log_evaluation(period=0)
]
samFarrellDay commented 2 years ago

Fixed with version 5.2.0. lightgbm 3.3.1 is now required.