- 10 Dec, 2021 1 commit
-
-
James Lamb authored
-
- 07 Dec, 2021 1 commit
-
-
James Lamb authored
* [R-package] remove support for '...' in lgb.train() * Apply suggestions from code review Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> Co-authored-by:
Nikita Titov <nekit94-08@mail.ru>
-
- 06 Dec, 2021 1 commit
-
-
James Lamb authored
* [R-package] remove support for '...' in lgb.cv() * empty commit
-
- 04 Dec, 2021 1 commit
-
-
david-cortes authored
[R-package] enable saving Booster with saveRDS() and loading it with readRDS() (fixes #4296) (#4685) * idiomatic serialization * linter * linter, namespace * comments, linter, fix failing test * standardize error messages for null handles * auto-restore handle in more functions * linter * missing declaration * correct wrong signature * fix docs * Update R-package/R/lgb.train.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * Update R-package/R/lgb.drop_serialized.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * Update R-package/R/lgb.restore_handle.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * Update R-package/R/lgb.restore_handle.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * Update R-package/R/lgb.make_serializable.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * move 'restore_handle' from feature importance to dump method * missing header * move arguments order, update docs * linter * avoid leaving files in working directory * add test for save_model=NULL * missing comma * Update R-package/R/lgb.restore_handle.R Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * Update R-package/src/lightgbm_R.cpp Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * change name of error function * update comment * restore old serialization functions but set as deprecated * Update R-package/R/readRDS.lgb.Booster.R Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * Update R-package/R/saveRDS.lgb.Booster.R Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> * update docs * Update R-package/R/readRDS.lgb.Booster.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * Update R-package/R/saveRDS.lgb.Booster.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * Update R-package/tests/testthat/test_basic.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * Update R-package/R/readRDS.lgb.Booster.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * comments * fix variable name * restore serialization test for linear models * Update R-package/R/lightgbm.R Co-authored-by:
James Lamb <jaylamb20@gmail.com> * update docs * fix issues with null terminator Co-authored-by:
James Lamb <jaylamb20@gmail.com> Co-authored-by:
Nikita Titov <nekit94-08@mail.ru>
-
- 11 Nov, 2021 1 commit
-
-
Michael Mahoney authored
* Add 'nrounds' as an alias for 'num_iterations' * Improve tests * Compare against nrounds directly * Fix whitespace lints
-
- 17 Sep, 2021 1 commit
-
-
david-cortes authored
* fix R memory leaks * attempt at solving linter complaints * fix compilation on windows * move R_API_BEGIN to correct place * make sure exception objects reach out of scope * better way to solve rchk complaints * remove goto statement
-
- 25 Aug, 2021 1 commit
-
-
James Lamb authored
* [R-package] add deprecation warnings on uses of '...' in predict() * add importFrom(utils, modifyList) in NAMESPACE
-
- 15 Jun, 2021 1 commit
-
-
James Lamb authored
* [R-package] add unit tests on monotone constraints * testing without skip() * put skip() back * make tests consistent with Python * Update R-package/tests/testthat/test_basic.R * more changes for consistency with Python tests
-
- 12 Jun, 2021 1 commit
-
-
James Lamb authored
* [R-package] avoid unnecessary computation of std deviations in lgb.cv() * use expect_equal()
-
- 03 May, 2021 1 commit
-
-
James Lamb authored
* real pointer for matrix * remove R_REAL_PTR * remove R_INT_PTR * add test
-
- 26 Apr, 2021 1 commit
-
-
James Lamb authored
-
- 12 Apr, 2021 1 commit
-
-
James Lamb authored
* [ci] Add debian-clang-devel CI job for the R package * [ci] Add debian-clang-devel CI job for the R package * fixes * fix test * update cran-comments * re-trigger CI * catch warnings and notes * fail with only a NOTE * uncomment CI code * remove env vars in windows tests * Update R-package/cran-comments.md Co-authored-by:
Nikita Titov <nekit94-08@mail.ru> Co-authored-by:
StrikerRUS <nekit94-12@hotmail.com> Co-authored-by:
Nikita Titov <nekit94-08@mail.ru>
-
- 25 Mar, 2021 1 commit
-
-
James Lamb authored
-
- 18 Jan, 2021 2 commits
-
-
Nikita Titov authored
* remove unused params from tests for the speedup * Update test_lgb.Booster.R
-
James Lamb authored
* [R-package] enable use of trees with linear models at leaves (fixes #3319) * remove problematic pragmas * fix tests * try to fix build scripts * try fixing pragma check * more pragma checks * ok fix pragma stuff for real * empty commit * regenerate documentation * try skipping test * uncomment CI * add note on missing value types for R * add tests on saving and re-loading booster
-
- 03 Jan, 2021 1 commit
-
-
James Lamb authored
* [R-package] add support for non-ASCII feature names (fixes #2983) * fix Windows
-
- 27 Sep, 2020 1 commit
-
-
James Lamb authored
[R-package] Fix incorrect num_iterations, early_stopping_round in saved models (fixes #2208, #2468) (#3368) * params to string * add tests * more tests * stop skipping training continuation test (fixes #2468) * remove unnecessary code
-
- 11 Sep, 2020 1 commit
-
-
James Lamb authored
* [R-package] remove unused code and comments * put check back * other typos
-
- 06 Sep, 2020 1 commit
-
-
James Lamb authored
* [R-package] started implementing first_metric_only * trying stuff * more changes * fixed handling of multiple metrics * fixed tests * remove duplicate tests * get training tests * fixes for lgb.cv() * fixes for lgb.cv() * fix linting
-
- 05 Aug, 2020 1 commit
-
-
Guolin Ke authored
* Update multiclass_objective.hpp * Apply suggestions from code review * Update src/objective/multiclass_objective.hpp * Apply suggestions from code review * Update test_basic.R * Update test_basic.R * Update src/objective/multiclass_objective.hpp Co-authored-by:
James Lamb <jaylamb20@gmail.com> * Apply suggestions from code review Co-authored-by:
James Lamb <jaylamb20@gmail.com>
-
- 02 Aug, 2020 1 commit
-
-
James Lamb authored
* [R-package] fix early_stopping_round <= 0 * linting
-
- 02 Jul, 2020 1 commit
-
-
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.
-
- 23 Jun, 2020 1 commit
-
-
James Lamb authored
* [R-package] fix R CMD check NOTE about leftover files * update number of allowed notes
-
- 25 May, 2020 1 commit
-
-
James Lamb authored
* [R-package] fix issue where early stopping thinks higher MAPE is desirable (fixes #3099) * fix linting * only use main metrics * fix tests
-
- 16 May, 2020 1 commit
-
-
James Lamb authored
-
- 25 Apr, 2020 1 commit
-
-
James Lamb authored
[R-package] fixed best_iter and best_score when training data is passed (fixes #2295, #2525) (#2961) * [R-package] fixed best_iter and best_score when early_stopping is not used (fixes #2295) * fixed tests
-
- 10 Apr, 2020 1 commit
-
-
OMOTO Tsukasa authored
* Support UTF-8 characters in feature name again This commit reverts 0d59859c. Also see: - https://github.com/microsoft/LightGBM/issues/2226 - https://github.com/microsoft/LightGBM/issues/2478 - https://github.com/microsoft/LightGBM/pull/2229 I reproduced the issue and as @kidotaka gave us a great survey in #2226, I don't conclude that the cause is UTF-8, but "an empty string (character)". Therefore, I revert "throw error when meet non ascii (#2229)" whose commit hash is 0d59859c, and add support feture names as UTF-8 again. * add tests * fix check-docs tests * update * fix tests * update .travis.yml * fix tests * update test_r_package.sh * update test_r_package.sh * update test_r_package.sh * add a test for R-package * update test_r_package.sh * update test_r_package.sh * update test_r_package.sh * fix test for R-package * update test_r_package.sh * update test_r_package.sh * update test_r_package.sh * update test_r_package.sh * update * updte * update * remove unneeded comments
-
- 22 Mar, 2020 1 commit
-
-
James Lamb authored
-
- 21 Mar, 2020 1 commit
-
-
James Lamb authored
-
- 14 Mar, 2020 1 commit
-
-
James Lamb authored
-
- 04 Mar, 2020 1 commit
-
-
Nikita Titov authored
* fixed cpplint errors * fixed more cpplint errors
-
- 03 Mar, 2020 1 commit
-
-
James Lamb authored
-
- 02 Mar, 2020 1 commit
-
-
James Lamb authored
-
- 23 Feb, 2020 1 commit
-
-
James Lamb authored
* [R-package] Fixed R implementation of upper_bound() and lower_bound() for lgb.Booster * [R-package] switched return type to double * fixed R tests on Booster upper_bound() and lower_bound() * fixed linting * moved numeric tolerance into a global constant
-
- 08 Feb, 2020 1 commit
-
-
Nikita Titov authored
* various minor style, docs and cpplint improvements * fixed typo in warning * fix recently added cpplint errors * move note for params upper in description for consistency
-
- 02 Feb, 2020 1 commit
-
-
Guolin Ke authored
* commit * fix a bug * fix bug * reset to track changes * refine the auto choose logic * sort the time stats output * fix include * change multi_val_bin_sparse_threshold * add cmake * add _mm_malloc and _mm_free for cross platform * fix cmake bug * timer for split * try to fix cmake * fix tests * refactor DataPartition::Split * fix test * typo * formating * Revert "formating" This reverts commit 5b8de4f7fb9d975ee23701d276a66d40ee6d4222. * add document * [R-package] Added tests on use of force_col_wise and force_row_wise in training (#2719) * naming * fix gpu code * Update include/LightGBM/bin.h Co-Authored-By:
James Lamb <jaylamb20@gmail.com> * Update src/treelearner/ocl/histogram16.cl * test: swap compilers for CI * fix omp * not avx2 * no aligned for feature histogram * Revert "refactor DataPartition::Split" This reverts commit 256e6d9641ade966a1f54da1752e998a1149b6f8. * slightly refactor data partition * reduce the memory cost Co-authored-by:
James Lamb <jaylamb20@gmail.com> Co-authored-by:
Nikita Titov <nekit94-08@mail.ru>
-
- 25 Jan, 2020 1 commit
-
-
James Lamb authored
-
- 16 Nov, 2019 1 commit
-
-
James Lamb authored
* Added more linters on R code * started working on implicit integers * finished style changes to handle implicit integers * regenned documentation and added concatenation linter * changed channel for r-lintr * try building stringi before lintr * trying to get libicui18n * trying another thing * trying conda-forge again * added re-install of stringi * uncommented other stages * Update .ci/test.sh Co-Authored-By:Nikita Titov <nekit94-08@mail.ru> * removed apt update and changed lintr version floor * get lintr from CRAN * R needs to come before C++ linting * testing lintr install from CRAN * trying one more thing * more verbose * order might matter * removed commented code * cleaned up linting block in test.sh * grouped conda install calls and fixed a few integer array things
-
- 24 Oct, 2019 2 commits
-
-
James Lamb authored
-
James Lamb authored
-