1. 18 Jun, 2019 1 commit
    • Guolin Ke's avatar
      balanced bagging (#2214) · cdba7147
      Guolin Ke authored
      * add balanced bagging
      
      * refine code
      
      * fix format
      
      * clarify usage only for binary application
      cdba7147
  2. 13 Jun, 2019 1 commit
  3. 26 May, 2019 1 commit
    • Belinda Trotta's avatar
      Top k multi error (#2178) · b3db9e92
      Belinda Trotta authored
      * Implement top-k multiclass error metric. Add new parameter top_k_threshold.
      
      * Add test for multiclass metrics
      
      * Make test less sensitive to avoid floating-point issues.
      
      * Change tabs to spaces.
      
      * Fix problem with test in Python 2. Refactor to use np.testing. Decrease number of training rounds so loss is larger and easier to compare.
      
      * Move multiclass tests into test_engine.py
      
      * Change parameter name from top_k_threshold to multi_error_top_k.
      
      * Fix top-k error metric to handle case where scores are equal. Update tests and docs.
      
      * Change name of top-k metric to multi_error@k.
      
      * Change tabs to spaces.
      
      * Fix formatting.
      
      * Fix minor issues in docs.
      b3db9e92
  4. 18 May, 2019 1 commit
  5. 16 May, 2019 2 commits
  6. 15 May, 2019 3 commits
  7. 12 May, 2019 1 commit
  8. 08 May, 2019 1 commit
  9. 05 May, 2019 1 commit
    • Nikita Titov's avatar
      [ci][docs] generate docs for C API (#2059) · cfcc020e
      Nikita Titov authored
      * use file to install deps for docs
      
      * added C_API docs
      
      * use breathe without exhale
      
      * added missed params descriptions and make Doxygen fail for warnings
      
      * escape char hotfix
      
      * ignore unknown directive for rstcheck
      
      * better handle env variable
      
      * hotfix for 'Unknown directive type' error with C_API=NO
      
      * Update .gitignore
      
      * fixed pylint
      
      * use already defined constants in conf.py
      
      * do not suppress Doxygen's output
      
      * addressed review comments
      
      * removed unneeded import
      cfcc020e
  10. 04 May, 2019 1 commit
  11. 01 May, 2019 1 commit
    • Nikita Titov's avatar
      [python] added plot_split_value_histogram function (#2043) · 611cf5d4
      Nikita Titov authored
      * added plot_split_value_histogram function
      
      * updated init module
      
      * added plot split value histogram example
      
      * added plot_split_value_histogram to notebook
      
      * added test
      
      * fixed pylint
      
      * updated API docs
      
      * fixed grammar
      
      * set y ticks to int value in more sufficient way
      611cf5d4
  12. 30 Apr, 2019 1 commit
  13. 29 Apr, 2019 1 commit
  14. 28 Apr, 2019 1 commit
  15. 26 Apr, 2019 1 commit
    • Nikita Titov's avatar
      [ci] hotfixes (#2132) · 044a39d0
      Nikita Titov authored
      * Update Features.rst
      
      * Update .appveyor.yml
      
      * Update test_windows.ps1
      
      * Update test_windows.ps1
      
      * Update .appveyor.yml
      
      * Update test_windows.ps1
      
      * Update .appveyor.yml
      044a39d0
  16. 19 Apr, 2019 1 commit
    • Scott Lundberg's avatar
      [docs] Update doc string for pred_contrib (#2116) · 89f2021a
      Scott Lundberg authored
      * Update doc string for pred_contrib
      
      See comments at the end of #1969
      
      * Update basic.py
      
      * Update basic.py
      
      * update doc strings
      
      * update equals sign in doc string
      
      * strip whitespace and gen rst
      
      * strip whitespace
      89f2021a
  17. 18 Apr, 2019 1 commit
  18. 11 Apr, 2019 1 commit
  19. 10 Apr, 2019 1 commit
  20. 04 Apr, 2019 1 commit
    • remcob-gr's avatar
      Add Cost Effective Gradient Boosting (#2014) · 76102284
      remcob-gr authored
      * Add configuration parameters for CEGB.
      
      * Add skeleton CEGB tree learner
      
      Like the original CEGB version, this inherits from SerialTreeLearner.
      Currently, it changes nothing from the original.
      
      * Track features used in CEGB tree learner.
      
      * Pull CEGB tradeoff and coupled feature penalty from config.
      
      * Implement finding best splits for CEGB
      
      This is heavily based on the serial version, but just adds using the coupled penalties.
      
      * Set proper defaults for cegb parameters.
      
      * Ensure sanity checks don't switch off CEGB.
      
      * Implement per-data-point feature penalties in CEGB.
      
      * Implement split penalty and remove unused parameters.
      
      * Merge changes from CEGB tree learner into serial tree learner
      
      * Represent features_used_in_data by a bitset, to reduce the memory overhead of CEGB, and add sanity checks for the lengths of the penalty vectors.
      
      * Fix bug where CEGB would incorrectly penalise a previously used feature
      
      The tree learner did not update the gains of previously computed leaf splits when splitting a leaf elsewhere in the tree.
      This caused it to prefer new features due to incorrectly penalising splitting on previously used features.
      
      * Document CEGB parameters and add them to the appropriate section.
      
      * Remove leftover reference to cegb tree learner.
      
      * Remove outdated diff.
      
      * Fix warnings
      
      * Fix minor issues identified by @StrikerRUS.
      
      * Add docs section on CEGB, including citation.
      
      * Fix link.
      
      * Fix CI failure.
      
      * Add some unit tests
      
      * Fix pylint issues.
      
      * Fix remaining pylint issue
      76102284
  21. 02 Apr, 2019 1 commit
  22. 26 Mar, 2019 1 commit
  23. 25 Mar, 2019 1 commit
    • kenmatsu4's avatar
      [python] Use first_metric_only flag for early_stopping function. (#2049) · 011cc90a
      kenmatsu4 authored
      * Use first_metric_only flag for early_stopping function.
      
      In order to apply early stopping with only first metric, applying first_metric_only flag for early_stopping function.
      
      * upcate comment
      
      * Revert "upcate comment"
      
      This reverts commit 1e75a1a415cc16cfbe795181e148ebfe91469be4.
      
      * added test
      
      * fixed docstring
      
      * cut comment and save one line
      
      * document new feature
      011cc90a
  24. 22 Mar, 2019 1 commit
  25. 24 Feb, 2019 1 commit
  26. 21 Feb, 2019 1 commit
  27. 20 Feb, 2019 1 commit
  28. 18 Feb, 2019 2 commits
  29. 04 Feb, 2019 1 commit
  30. 03 Feb, 2019 1 commit
  31. 26 Jan, 2019 1 commit
  32. 22 Jan, 2019 1 commit
  33. 21 Jan, 2019 1 commit
  34. 18 Jan, 2019 1 commit
  35. 20 Dec, 2018 1 commit
  36. 10 Dec, 2018 1 commit