- 01 Apr, 2019 1 commit
-
-
Nikita Titov authored
-
- 26 Mar, 2019 3 commits
-
-
James Lamb authored
* updated gitignore to ignore files created by local python installation * moved sections around in gitignore
-
James Lamb authored
* Small aesthetic improvements to RTD docs * fixed markdown table in Development-Guide * removed unnecessary blank line in conf.py
-
Nikita Titov authored
-
- 25 Mar, 2019 3 commits
-
-
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
-
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
-
Guolin Ke authored
-
- 22 Mar, 2019 1 commit
-
-
Nikita Titov authored
-
- 20 Mar, 2019 1 commit
-
-
Nikita Titov authored
-
- 18 Mar, 2019 2 commits
-
-
Nikita Titov authored
-
Markus Cozowicz authored
* added API changes required for JNI performance optimizations (e.g. predict is 3-4x faster) * removed commented variables * removed commented header * renamed method to make it obvious it is created for Spark * fixed comment alignment * replaced GetPrimitiveArrayCritical with GetIntArrayElements for training. fixed dead-lock on databricks
-
- 16 Mar, 2019 1 commit
-
-
Ilya Matiach authored
* lightgbm SWIG Java wrapper changes needed to add early stopping in mmlspark * updated based on comments
-
- 14 Mar, 2019 4 commits
-
-
Nikita Titov authored
* ci fix * ci fix for Appveyor * actually firx Appveyor
-
Nikita Titov authored
-
Nikita Titov authored
* disabled split value histogram for categorical features * updated test for cat. feature * updated docs
-
Nikita Titov authored
* updated gitignore * updated tree index with cat feature
-
- 09 Mar, 2019 2 commits
-
-
Nikita Titov authored
* added get_split_value_histogram method * added param for ordinary return value
-
remcob-gr authored
-
- 07 Mar, 2019 2 commits
-
-
Erling Haugstad authored
-
Nikita Titov authored
* fixed number of tests in pytest * fixed data shape and removed unused code * refactored tests * hotfix * hotfix
-
- 26 Feb, 2019 1 commit
-
-
remcob-gr authored
* Initial attempt to implement appending features in-memory to another data set The intent is for this to enable munging files together easily, without needing to round-trip via numpy or write multiple copies to disk. In turn, that enables working more efficiently with data sets that were written separately. * Implement Dataset.dump_text, and fix small bug in appending of group bin boundaries. Dumping to text enables us to compare results, without having to worry about issues like features being reordered. * Add basic tests for validation logic for add_features_from. * Remove various internal mapping items from dataset text dumps These are too sensitive to the exact feature order chosen, which is not visible to the user. Including them in tests appears unnecessary, as the data dumping code should provide enough coverage. * Add test that add_features_from results in identical data sets according to dump_text. * Add test that booster behaviour after using add_features_from matches that of training on the full data This checks: - That training after add_features_from works at all - That add_features_from does not cause training to misbehave * Expose feature_penalty and monotone_types/constraints via get_field These getters allow us to check that add_features_from does the right thing with these vectors. * Add tests that add_features correctly handles feature_penalty and monotone_constraints. * Ensure add_features_from properly frees the added dataset and add unit test for this Since add_features_from moves the feature group pointers from the added dataset to the dataset being added to, the added dataset is invalid after the call. We must ensure we do not try and access this handle. * Remove some obsolete TODOs * Tidy up DumpTextFile by using a single iterator for each feature This iterators were also passed around as raw pointers without being freed, which is now fixed. * Factor out offsetting logic in AddFeaturesFrom * Remove obsolete TODO * Remove another TODO This one is debatable, test code can be a bit messy and duplicate-heavy, factoring it out tends to end badly. Leaving this for now, will revisit if adding more tests later on becomes a mess. * Add documentation for newly-added methods. * Fix whitespace issues identified by pylint. * Fix a few more whitespace issues. * Fix doc comments * Implement deep copying for feature groups. * Replace awkward std::move usage by emplace_back, and reduce vector size to num_features rather than num_total_features. * Copy feature groups in addFeaturesFrom, rather than moving them. * Fix bugs in FeatureGroup copy constructor and ensure source dataset remains usable * Add reserve to PushVector and PushOffset * Move definition of Clone into class body * Fix PR review issues * Fix for loop increment style. * Fix test failure * Some more docstring fixes. * Remove blank line
-
- 24 Feb, 2019 1 commit
-
-
Nikita Titov authored
[docs] added notes about params usage when data is provided via path and removed unused param (#2024) * added notes about params usage when data is provided via path * fixed init score and valid init score params note * fixed binary params description
-
- 21 Feb, 2019 1 commit
-
-
Nikita Titov authored
-
- 20 Feb, 2019 1 commit
-
-
Ilya Matiach authored
* added LightGBM SWIG wrappers for macOS and updated docs * updated installation instructions based on comments * updated based on comments
-
- 18 Feb, 2019 3 commits
-
-
Harry Moreno authored
-
Harry Moreno authored
* it is confusing to name validation data `test_data` especially as terms like train, validation, test splits are common in ML. Change variable name in python quick start.
-
Nikita Titov authored
-
- 07 Feb, 2019 1 commit
-
-
Laurae authored
-
- 06 Feb, 2019 1 commit
-
-
Nikita Titov authored
-
- 05 Feb, 2019 2 commits
- 04 Feb, 2019 2 commits
- 03 Feb, 2019 2 commits
- 02 Feb, 2019 4 commits
-
-
Nikita Titov authored
-
Nikita Titov authored
* refined command status check * refined Appveyor * redirect all warnings to stdout
-
Nikita Titov authored
-
Nikita Titov authored
* added OpenMP options for python-package installation * fixed grammar typo
-
- 31 Jan, 2019 1 commit
-
-
Guolin Ke authored
-