- 15 Jul, 2020 2 commits
-
-
Alberto Ferreira authored
* [performance] Add Fast methods to C API for SingleRow Predictions * Add methods to C API to make single-row predictions faster: - LGBM_BoosterPredictForMatSingleRowFastInit (setup) - LGBM_BoosterPredictForMatSingleRowFast (predict) - LGBM_FastConfigFree (cleanup setup outputs) * Code syle cleanup * Fix lint errors * [performance] Revert FastConfig improvement to pass data at init This reduces optimization by 5% / 30% with this branch but makes it so it can be used for higher level wrappers in MMLSpark. And outside it as well. * [performance] Introduce Fast variants for SingleRow predictors. Although this already provides performance gains by itself for any callers, two new functions were added to Java's SWIG interfaces to exploit that AND the GetPrimitiveArrayCritical data fetches. * [tests/profiling] Profile Fast predict methods Build with -DBUILD_PROFILING_TESTS=ON and copy the default model trained on the Higgs dataset from the benchmarks repo https://github.com/guolinke/boosting_tree_benchmarks.git to LightGBM repo root and run the lightgbm_profile_* binaries. The single instance used is the first row from that dataset. * Update comment on CMakeLists. * Fix doxygen-introduced issue (#threads) * Fix conflicts due to new RowFunctionFromCSR signature in master * Change FastConfig ncol to int32_t. * Removed profiling folder * fix doxygen typo include/LightGBM/c_api.h Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * fix doxygen typo include/LightGBM/c_api.h Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * fix doxygen typo include/LightGBM/c_api.h Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * Doxygen: change new docstrings to double back-quote Co-authored-by:
alberto.ferreira <alberto.ferreira@feedzai.com> Co-authored-by:
Nikita Titov <nekit94-08@mail.ru>
-
Guolin Ke authored
* feature importance type in saved model file * fix nullptr * fixed formatting * fix python/R * Update src/c_api.cpp * Apply suggestions from code review Co-authored-by:
James Lamb <jaylamb20@gmail.com> * fix c_api test * fix swig * minor docs improvements and added defines for importance types Co-authored-by:
StrikerRUS <nekit94-12@hotmail.com> Co-authored-by:
James Lamb <jaylamb20@gmail.com>
-
- 14 Jul, 2020 1 commit
-
-
Germán Ramírez-Espinoza authored
[python][scikit-learn] Fixes a bug that prevented using multiple eval_metrics in LGBMClassifier (#3222) * Fixes a bug that prevented using multiple eval_metrics in LGBMClassifier * Move bug-fix test to the test_metrics unit-test * Fix test to avoid issues with existing tests * Fix coding-style error Co-authored-by:German I Ramirez-Espinoza <gire@home>
-
- 13 Jul, 2020 3 commits
-
-
James Lamb authored
-
Nikita Titov authored
-
James Lamb authored
-
- 12 Jul, 2020 1 commit
-
-
James Lamb authored
-
- 10 Jul, 2020 1 commit
-
-
James Lamb authored
-
- 09 Jul, 2020 1 commit
-
-
guanqun authored
-
- 08 Jul, 2020 2 commits
-
-
Lewington-pitsos authored
* Improve some phrasing * implement requested changes
-
Hongbin Shi authored
-
- 07 Jul, 2020 2 commits
-
-
Guolin Ke authored
* Update engine.py * Update sklearn.py
-
Belinda Trotta authored
-
- 05 Jul, 2020 2 commits
-
-
James Lamb authored
* [ci] [R-package] catch builds that have not updated docs * drop reliance on .Renviron * remove docs changes * Update .ci/test_r_package.sh Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * make all R tasks start with r-package Co-authored-by:
Nikita Titov <nekit94-08@mail.ru>
-
Nikita Titov authored
* update gcc version * Update setup.sh * fix GitHub Actions
-
- 02 Jul, 2020 2 commits
-
-
Belinda Trotta authored
* Add interaction constraints functionality. * Minor fixes. * Minor fixes. * Change lambda to function. * Fix gpu bug, remove extra blank lines. * Fix gpu bug. * Fix style issues. * Try to fix segfault on MACOS. * Fix bug. * Fix bug. * Fix bugs. * Change parameter format for R. * Fix R style issues. * Change string formatting code. * Change docs to say R package not supported. * Refactor check_interaction_constraints into separate function, add validation. * Fix error messages. * Add tests. * Update docs. * Fix tests, minor refactoring. * Fix style issues. * Fix R style issue. * Remove old code. * Fix existing test and add new one. * Fix R lint error.
-
shiyu1994 authored
-
- 01 Jul, 2020 2 commits
-
-
Guolin Ke authored
Co-authored-by:StrikerRUS <nekit94-12@hotmail.com>
-
James Lamb authored
* [R-package] [ci] Fix MiKTeX downloads (fixes #3198) * use v2
-
- 28 Jun, 2020 2 commits
-
-
Ilya Matiach authored
* adding sparse support to TreeSHAP in lightgbm * updating based on comments * updated based on comments, used fromiter instead of frombuffer * updated based on comments * fixed limits import order * fix sparse feature contribs to work with more than int32 max rows * really fixed int64 max error and build warnings * added sparse test with >int32 max rows * fixed python side reshape check on sparse data * updated based on latest comments * fixed comments * added CSC INT32_MAX validation to test, fixed comments
-
Belinda Trotta authored
* Fix bug: crashes when interaction_constraints is nonempty and not all features are used. * Fix python lint error.
-
- 27 Jun, 2020 3 commits
-
-
Alex authored
* modify attribute and include stacking tests * backwards compatibility * check sklearn version * move stacking import * Number of input features (#3173) * Number of input features (#3173) * Number of input features (#3173) * Number of input features (#3173) Split number of features and stacking tests. * Number of input features (#3173) Modify test name. * Number of input features (#3173) Update stacking tests for review comments. * Number of input features (#3173) * Number of input features (#3173) * Number of input features (#3173) * Number of input features (#3173) Modify classifier test. * Number of input features (#3173) * Number of input features (#3173) Check score.
-
Nikita Titov authored
-
James Lamb authored
* first attempt * update to R 4.0.2 * no duplicate builds * [R-package] [ci] update to R 4.0.2 for Windows CI jobs (fixes #3191)
-
- 26 Jun, 2020 1 commit
-
-
Darby Payne authored
-
- 23 Jun, 2020 2 commits
-
-
James Lamb authored
* [R-package] fix R CMD check NOTE about leftover files * update number of allowed notes
-
Belinda Trotta authored
* Add interaction constraints functionality. * Minor fixes. * Minor fixes. * Change lambda to function. * Fix gpu bug, remove extra blank lines. * Fix gpu bug. * Fix style issues. * Try to fix segfault on MACOS. * Fix bug. * Fix bug. * Fix bugs. * Change parameter format for R. * Fix R style issues. * Change string formatting code. * Change docs to say R package not supported. * Remove R functionality, moving to separate PR. * Keep track of branch features in tree object. * Only track branch features when feature interactions are enabled. * Fix lint error. * Update docs and simplify tests.
-
- 22 Jun, 2020 6 commits
-
-
Nikita Titov authored
* added GitHub Actions badge * simplified condition in config
-
James Lamb authored
-
Nikita Titov authored
* Revert "[ci][docs] temporarily pin Sphinx version (#3157)" This reverts commit b3a84df5. * removed duplicated docstrings
-
Nikita Titov authored
-
Nikita Titov authored
* Update make.bat * Update README.rst * Update .linkcheckerrc * Update GPU-Windows.rst * Update GPU-Windows.rst
-
James Lamb authored
* [ci] Move R Windows CI to GitHub Actions * fix OS filter * Apply suggestions from code review Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * remove trailing semicolon Co-authored-by:
Nikita Titov <nekit94-08@mail.ru>
-
- 14 Jun, 2020 1 commit
-
-
James Lamb authored
* [R-package] replaced gendef.exe with R code to create R.def (fixes #3064) * fix broken things * trying to add R4.0 docs * changed make * fixing make paths * update notes on environment variables * fix linting * fixes to CI * fixing build_cmd and other stuff * fix bad substitution * fix Azure Linux builds * I am bad at bash * simplifying * only testing R * getting better logs * mingw32 * docs * toolchain * using msys * fix visual studio condition * toolchain test * full CI * fix if-elses * bump allowed NOTEs * search for Rscript * updates to docs * use processx * fix mismatched arguments * move CI to GitHub Actions * minor changes * fix workflow file * fix templating * fix Azure DevOps * debugging windows builds * dont shQuote file name * all GitHub Actions jobs * Apply suggestions from code review Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * minor cleanup * remove objdump printing * make file.remove() invisible * Apply suggestions from code review Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * reduce duplicated paths in docs Co-authored-by:
Nikita Titov <nekit94-08@mail.ru>
-
- 11 Jun, 2020 2 commits
-
-
Nikita Titov authored
-
Nikita Titov authored
-
- 10 Jun, 2020 1 commit
-
-
Nikita Titov authored
-
- 09 Jun, 2020 1 commit
-
-
Guolin Ke authored
-
- 05 Jun, 2020 2 commits
-
-
Nikita Titov authored
-
Nikita Titov authored
This reverts commit 656d2676.
-