1. 10 Jul, 2022 1 commit
  2. 07 Jul, 2022 2 commits
  3. 03 Jul, 2022 1 commit
  4. 01 Jul, 2022 2 commits
  5. 28 Jun, 2022 1 commit
  6. 27 Jun, 2022 2 commits
  7. 26 Jun, 2022 1 commit
  8. 25 Jun, 2022 1 commit
  9. 23 Jun, 2022 1 commit
  10. 20 Jun, 2022 1 commit
  11. 19 Jun, 2022 4 commits
  12. 12 Jun, 2022 1 commit
  13. 05 Jun, 2022 2 commits
  14. 31 May, 2022 1 commit
  15. 25 May, 2022 1 commit
  16. 24 May, 2022 1 commit
  17. 22 May, 2022 1 commit
  18. 17 May, 2022 1 commit
  19. 30 Apr, 2022 1 commit
  20. 22 Apr, 2022 1 commit
  21. 13 Apr, 2022 1 commit
  22. 02 Apr, 2022 1 commit
  23. 31 Mar, 2022 1 commit
  24. 30 Mar, 2022 2 commits
  25. 28 Mar, 2022 1 commit
  26. 17 Mar, 2022 1 commit
    • Antoni Baum's avatar
      [python] make `early_stopping` callback pickleable (#5012) · f77e0adf
      Antoni Baum authored
      * Turn `early_stopping` into a Callable class
      
      * Fix
      
      * Lint
      
      * Remove print
      
      * Fix order
      
      * Revert "Lint"
      
      This reverts commit 7ca8b557572446888cf793c0082d9a7efd1e29a7.
      
      * Apply suggestion from code review
      
      * Nit
      
      * Lint
      
      * Move callable class outside the func for pickling
      
      * Move _pickle and _unpickle to tests utils
      
      * Add early stopping callback picklability test
      
      * Nit
      
      * Fix
      
      * Lint
      
      * Improve type hint
      
      * Lint
      
      * Lint
      
      * Add cloudpickle to test_windows
      
      * Update tests/python_package_test/test_engine.py
      
      * Fix
      
      * Apply suggestions from code review
      f77e0adf
  27. 15 Mar, 2022 2 commits
  28. 12 Mar, 2022 1 commit
  29. 06 Mar, 2022 1 commit
  30. 26 Feb, 2022 1 commit
  31. 24 Feb, 2022 1 commit
    • José Morales's avatar
      [python-package] add support for pandas nullable types (fixes #4173) (#4927) · f1856956
      José Morales authored
      
      
      * map nullable dtypes to regular float dtypes
      
      * cast x3 to float after introducing missing values
      
      * add test for regular dtypes
      
      * use .astype and then values. update nullable_dtypes test and include test for regular numpy dtypes
      
      * more specific allowed dtypes. test no copy when single float dtype df
      
      * use np.find_common_type. set np.float128 to None when it isn't supported
      
      * set default as type(None)
      
      * move tests that use lgb.train to test_engine
      
      * include np.float32 when finding common dtype
      
      * Apply suggestions from code review
      Co-authored-by: default avatarNikita Titov <nekit94-08@mail.ru>
      
      * add linebreak
      Co-authored-by: default avatarNikita Titov <nekit94-08@mail.ru>
      f1856956