1. 16 May, 2019 1 commit
  2. 15 May, 2019 2 commits
  3. 08 May, 2019 1 commit
  4. 28 Apr, 2019 1 commit
  5. 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
  6. 18 Apr, 2019 1 commit
  7. 13 Apr, 2019 2 commits
  8. 11 Apr, 2019 1 commit
  9. 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
  10. 24 Feb, 2019 1 commit
  11. 06 Feb, 2019 1 commit
  12. 02 Feb, 2019 1 commit
  13. 25 Nov, 2018 1 commit
  14. 22 Nov, 2018 1 commit
  15. 29 Oct, 2018 1 commit
  16. 27 Oct, 2018 1 commit
  17. 10 Oct, 2018 1 commit
  18. 16 Sep, 2018 1 commit
  19. 11 Sep, 2018 1 commit
  20. 06 Sep, 2018 1 commit
  21. 29 Aug, 2018 1 commit
  22. 27 Aug, 2018 1 commit
  23. 25 Aug, 2018 1 commit
    • Guolin Ke's avatar
      add support of refit-decay (#1603) · 2db6377a
      Guolin Ke authored
      * add support of refit-decay
      
      * add refit into c_api
      
      * add test
      
      * update document
      
      * Update basic.py
      
      * Update test_engine.py
      
      * Update basic.py
      
      * Update test_engine.py
      
      * fix comments
      
      * update test
      
      * fix the comments
      
      * Update test_engine.py
      2db6377a
  24. 08 Aug, 2018 1 commit
  25. 06 Aug, 2018 1 commit
  26. 31 Jul, 2018 1 commit
  27. 25 Jul, 2018 1 commit
  28. 15 Jul, 2018 1 commit
  29. 12 Jul, 2018 1 commit
  30. 09 Jul, 2018 1 commit
  31. 14 Jun, 2018 1 commit
  32. 10 Jun, 2018 1 commit
  33. 04 Jun, 2018 3 commits
  34. 03 Jun, 2018 2 commits
  35. 02 Jun, 2018 1 commit
    • Nikita Titov's avatar
      [docs] generate parameters description from config file. Stage 1 (#1409) · 713f5e6c
      Nikita Titov authored
      * generate parameters description from config file
      
      * made pylint happy
      
      * added checks description
      
      * fixed links handling in desc and descl2 fields
      
      * refine Core Parameters section
      
      * removed excess quotes from default values
      
      * fixed parameter type retrieve
      
      * added note about auto-generated parameters
      713f5e6c