1. 05 May, 2019 1 commit
  2. 04 May, 2019 4 commits
  3. 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
  4. 30 Apr, 2019 5 commits
  5. 29 Apr, 2019 3 commits
  6. 28 Apr, 2019 1 commit
  7. 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
  8. 22 Apr, 2019 1 commit
  9. 19 Apr, 2019 2 commits
  10. 18 Apr, 2019 1 commit
  11. 17 Apr, 2019 1 commit
  12. 16 Apr, 2019 3 commits
  13. 13 Apr, 2019 3 commits
  14. 11 Apr, 2019 3 commits
  15. 10 Apr, 2019 2 commits
  16. 09 Apr, 2019 1 commit
    • Nikita Titov's avatar
      [ci] update CI stuff (#2079) · 691b8428
      Nikita Titov authored
      * updated boost submodule
      
      * updated docker with new stable Clang and CMake
      
      * switch to dev docker
      
      * updated setup script
      
      * updated MinGW on Appveyor
      
      * updated Azure config to use docker for GPU task
      
      * do not upgrade gcc - takes too long
      
      * test: switch compilers
      
      * switch compilers back
      
      * get back to main docker
      691b8428
  17. 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
  18. 02 Apr, 2019 1 commit
  19. 01 Apr, 2019 1 commit
  20. 26 Mar, 2019 3 commits
  21. 25 Mar, 2019 1 commit
    • mjmckp's avatar
      Add API method LGBM_BoosterPredictForMats (#2008) · 823fc03c
      mjmckp authored
      * Fix index out-of-range exception generated by BaggingHelper on small datasets.
      
      Prior to this change, the line "score_t threshold = tmp_gradients[top_k - 1];" would generate an exception, since tmp_gradients would be empty when the cnt input value to the function is zero.
      
      * Update goss.hpp
      
      * Update goss.hpp
      
      * Add API method LGBM_BoosterPredictForMats which runs prediction on a data set given as of array of pointers to rows (as opposed to existing method LGBM_BoosterPredictForMat which requires data given as contiguous array)
      
      * Fix incorrect upstream merge
      
      * Add link to LightGBM.NET
      
      * Fix indenting to 2 spaces
      
      * Dummy edit to trigger CI
      
      * Dummy edit to trigger CI
      823fc03c