1. 16 Apr, 2019 1 commit
  2. 13 Apr, 2019 1 commit
  3. 11 Apr, 2019 1 commit
  4. 01 Apr, 2019 1 commit
  5. 26 Mar, 2019 1 commit
  6. 06 Feb, 2019 1 commit
  7. 03 Feb, 2019 1 commit
  8. 02 Feb, 2019 1 commit
  9. 30 Jan, 2019 1 commit
    • Guolin Ke's avatar
      fix nan in eval results (#1973) · feeaf38f
      Guolin Ke authored
      * always save the score of the first round in early stopping
      
      fix #1971
      
      * avoid using std::log on non-positive numbers
      
      * remove unnecessary changes
      
      * add tests
      
      * Update test_sklearn.py
      
      * enhanced tests
      feeaf38f
  10. 29 Jan, 2019 1 commit
  11. 17 Dec, 2018 1 commit
    • Guolin Ke's avatar
      Fix bugs in RF (#1906) · cba82447
      Guolin Ke authored
      * fix RF's bugs
      
      * fix tests
      
      * rollback num_iterations
      
      * fix a bug and reduce memory costs
      
      * reduce memory cost
      cba82447
  12. 25 Nov, 2018 1 commit
  13. 06 Nov, 2018 2 commits
  14. 10 Oct, 2018 1 commit
  15. 09 Oct, 2018 1 commit
    • Guolin Ke's avatar
      average predictions for constant features (#1735) · c920e634
      Guolin Ke authored
      * average predictions for constant features
      
      * fix possible numerical issues in std::log.
      
      * fix pylint
      
      * fix bugs in c_api
      
      * fix styles
      
      * clean code for multi class
      
      * rewrite test
      
      * fix pylint
      
      * skip test_constant_features
      
      * refine test
      
      * fix tests
      
      * fix tests
      
      * update FAQ
      
      * fix test
      
      * Update FAQ.rst
      c920e634
  16. 15 Sep, 2018 1 commit
  17. 07 Sep, 2018 1 commit
  18. 27 Aug, 2018 1 commit
  19. 16 Aug, 2018 1 commit
  20. 20 Jun, 2018 1 commit
  21. 31 May, 2018 1 commit
  22. 20 May, 2018 1 commit
    • Guolin Ke's avatar
      Refine config object (#1381) · dc699574
      Guolin Ke authored
      * [WIP] refine config
      
      * [wip] ready for the auto code generate
      
      * auto generate config codes
      
      * use with to open file
      
      * fix bug
      
      * fix pylint
      
      * fix bug
      
      * fix pylint
      
      * fix bugs.
      
      * tmp for failed test.
      
      * fix tests.
      
      * added nthreads alias
      
      * added new aliases from new config.h
      
      * fixed duplicated alias
      
      * refactored parameter_generator.py
      
      * added new aliases from config.h and removed remaining old names
      
      * fix bugs & some miss alias
      
      * added aliases
      
      * add more descriptions.
      
      * add comment.
      dc699574
  23. 18 May, 2018 1 commit
  24. 11 May, 2018 1 commit
  25. 18 Apr, 2018 1 commit
  26. 07 Feb, 2018 1 commit
  27. 22 Jan, 2018 1 commit
    • Nikita Titov's avatar
      [docs] aliases (#1209) · f8cf0d2f
      Nikita Titov authored
      * added new aliases for regression_l2 to docs
      
      * fixed new line
      
      * fixed tweedie_variance_power description
      
      * moved gamma and tweedie metrics to other regression metrics
      
      * added new aliases for l2 to docs
      
      * added new alias for l1 to docs
      
      * added new alias for log loss to docs
      
      * added new aliases for multiclass to docs
      
      * added description for default value of metric param
      
      * fixed link to poisson regression and capitalized regressions' names
      
      * removed unused earlier alias type for gamma deviance
      
      * added aliases for multiclass and multiclass_ova
      
      * updated Quick-Start.rst according to Parameters.rst
      f8cf0d2f
  28. 21 Jan, 2018 2 commits
  29. 16 Jan, 2018 1 commit
  30. 17 Dec, 2017 1 commit
  31. 11 Nov, 2017 1 commit
  32. 08 Oct, 2017 1 commit
    • Tony-Y's avatar
      Change functions in common.h into template functions (#969) (#973) · 87fa8b54
      Tony-Y authored
      * Fix coding style (#969)
      
      Function names must be in the "Pascal Case" style.
      
      * check_elements_interval_closed to CheckElementsIntervalClosed
      
      * obtain_min_max_sum to ObtainMinMaxSum
      
      * Change functions in common.h into template functions (#969)
      
      * CheckElementsIntervalClosed
      
      * ObtainMinMaxSum
      
      These two functions were changed into template functions.
      
      * Remove an unpreferable overload
      
      * remove an overload of the function ObtainMinMaxSum
      
      * Use stringstream to format T type
      87fa8b54
  33. 07 Oct, 2017 1 commit
    • Tony-Y's avatar
      Fix coding style (#969) (#970) · 8425fbea
      Tony-Y authored
      Function names must be in the "Pascal Case" style.
      
      * check_elements_interval_closed to CheckElementsIntervalClosed
      
      * obtain_min_max_sum to ObtainMinMaxSum
      8425fbea
  34. 30 Aug, 2017 1 commit
  35. 29 Aug, 2017 1 commit
  36. 18 Aug, 2017 1 commit
  37. 28 Jul, 2017 2 commits
    • Guolin Ke's avatar
    • olofer's avatar
      Customized average fixes (nullptr and network) (#739) · eb52262b
      olofer authored
      * Created objectives and metrics xentropy and xentropy1
      
      * Some coment and code cleanup.
      
      * Added Kullback-Leibler version of metric. Changed some warning messages.
      
      * Fixed sign error in KL-divergence calc.
      
      * Removed __PRETTY_FUNCTION__.
      
      * Fixed better name for alternative xentropy parameterization.
      Documented details on the objectives / metrics in code comments.
      
      * Common code for label interval checks. Cleanups.
      
      * Use common utility for various weight property checks.
      
      * Added code for customizable initial average to boost from.
      
      * Fixed spelling error in aliases.
      
      * Fixed nullptr check error in custom average.
      
      * Added network code for customized init score.
      
      * Restructured so that "standard" and "custom" init auto scores share aux.
      function.
      
      * Updated name for aux. automatic initial score fetcher.
      eb52262b