- 09 Nov, 2017 1 commit
-
-
wxchan authored
* add init_score & test cpp and python result consistency * try fix common.h * Fix tests (#3) * update atof * fix bug * fix tests. * fix bug * fix dtypes * fix categorical feature override * fix protobuf on vs build (#1004) * [optional] support protobuf * fix windows/LightGBM.vcxproj * add doc * fix doc * fix vs support (#2) * fix vs support * fix cmake * fix #1012 * [python] add network config api (#1019) * add network * update doc * add float tolerance in bin finder. * fix a bug * update tests * add double torelance on tree model * fix tests * simplify the double comparison * fix lightsvm zero base * move double tolerance to the bin finder. * fix pylint * clean test.sh * add sklearn test * remove underline * clean codes * set random_state=None * add last line * fix doc * rename file * try fix test
-
- 07 Oct, 2017 1 commit
-
-
Nikita Titov authored
* fixed Python-API references * moved Features section to ReadTheDocs * fixed index of ReadTheDocs * moved Experiments section to ReadTheDocs * fixed capital letter * fixed citing * moved Parallel Learning section to ReadTheDocs * fixed markdown * fixed Python-API * fixed link to Quick-Start * fixed gpu docker README * moved Installation Guide from wiki to ReadTheDocs * removed references to wiki * fixed capital letters in headings * hotfixes * fixed non-Unicode symbols and reference to Python API * fixed citing references * fixed links in .md files * fixed links in .rst files * store images locally in the repo * fixed missed word * fixed indent in Experiments.rst * fixed 'Duplicate implicit target name' message which is successfully resolved by adding anchors * less verbose * prevented maito: ref creation * fixed indents * fixed 404 * fixed 403 * fixed 301 * fixed fake anchors * fixed file extentions * fixed Sphinx warnings * added StrikerRUS profile link to FAQ * added henry0312 profile link to FAQ
-
- 07 Sep, 2017 1 commit
-
-
Nikita Titov authored
* fixed description of Dataset * fixed description of Booster * fixed description of train * fixed description of cv * fixed description of callbacks * fixed description of plotting * hotfixes
-
- 05 Sep, 2017 1 commit
-
-
Nikita Titov authored
* improved sklearn interface; added sklearns' tests * moved best_score into the if statement * improved docstrings; simplified LGBMCheckConsistentLength * fixed typo * pylint * updated example * fixed Ranker interface * added missed boosting_type * fixed more comfortable autocomplete without unused objects * removed check for None of eval_at * fixed according to review * fixed typo * added description of fit return type * dictionary->dict for short * markdown cleanup
-
- 18 Aug, 2017 2 commits
- 27 Jul, 2017 1 commit
-
-
Laurae authored
-
- 07 Jul, 2017 1 commit
-
-
wxchan authored
* add keep_training_booster * use model string * reset handle; free dataset
-
- 06 May, 2017 1 commit
-
-
wxchan authored
* make test fail * change default best_iteration to 0 * fix test * change data_splitter to folds in cv * update docs
-
- 30 Apr, 2017 1 commit
-
-
Peter authored
-
- 26 Apr, 2017 1 commit
-
-
wxchan authored
-
- 15 Apr, 2017 1 commit
-
-
wxchan authored
-
- 02 Apr, 2017 1 commit
-
-
Laurae authored
* Python: Fix RandomState issue #376 * Add test case for Python's Shuffle=True
-
- 28 Mar, 2017 1 commit
-
-
wxchan authored
-
- 27 Mar, 2017 1 commit
-
-
Alexander Rakhlin authored
np.random.seed(seed) in _make_n_folds(...) has a side effect setting random seed for outer scope
-
- 01 Mar, 2017 2 commits
- 18 Feb, 2017 1 commit
-
-
wxchan authored
* add data_splitter for cv * update gitignore * clean code
-
- 09 Feb, 2017 1 commit
-
-
extremin authored
When setting the parameter 'shuffle' of cv method to False ,the program raises the error below: UnboundLocalError:local variable 'randidx' referenced before assignment fixed.
-
- 27 Jan, 2017 1 commit
-
-
wxchan authored
-
- 16 Jan, 2017 1 commit
-
-
wxchan authored
* fix bug for categorical_feature * add test on load model with categorical feature * add unseen category in test dataset * save/load pandas_categorical to model * fix logic * cast pandas columns to string * add load pandas_categorical from file to _InnerPredictor init
-
- 12 Jan, 2017 1 commit
-
-
wxchan authored
* suppprt pandas categorical * refine logic * make default=auto * fix train/valid categorical codes * add test * unify set _predictor * fix tests * fix warning * support feature_name=int
-
- 10 Jan, 2017 1 commit
-
-
wxchan authored
* add compat.py * unify types * range/xrange -> range_ * move argc_ to compat.py; add is_numeric error type * use simplejson for json * move json to compat.py * move pandas to compat.py * move sklearn to compat.py * remove unused function * fix 'unify types' * argc_ (lambda -> def)
-
- 08 Jan, 2017 1 commit
-
-
wxchan authored
* use handle is not None for _is_constructed * sort imports; clean code; move FAQ to docs
-
- 06 Jan, 2017 1 commit
-
-
wxchan authored
* fix reset parameter * redefine CVBooster * env.model won't be None * update env.params
-
- 04 Jan, 2017 1 commit
-
-
wxchan authored
* format python code with pep8 * **DO NOT MERGE** deliberately break rules to see what will happen during check * Revert "**DO NOT MERGE** deliberately break rules to see what will happen during check" This reverts commit 0db93cd7a43c7efa43a2112ada43d46c6f9115d9. * fix format in test.py * add docs for pep-8
-
- 02 Jan, 2017 1 commit
-
-
Guolin Ke authored
-
- 31 Dec, 2016 1 commit
-
-
wxchan authored
-
- 28 Dec, 2016 1 commit
-
-
Guolin Ke authored
-
- 19 Dec, 2016 1 commit
-
-
wxchan authored
add learning rate to dart (#133)
-
- 18 Dec, 2016 1 commit
-
-
wxchan authored
* add gridsearch example for python sklearn * reset_learning_rate->reset_parameter * make callbacks public
-
- 13 Dec, 2016 1 commit
-
-
wxchan authored
-
- 09 Dec, 2016 1 commit
-
-
wxchan authored
-
- 08 Dec, 2016 1 commit
-
-
Guolin Ke authored
Provide a high level Dataset class for easy use.
-
- 07 Dec, 2016 1 commit
-
-
wxchan authored
current problem: callback order: user-defined in callback parameter -> reset_learning_rate/print_evaluation/record_evaluation/early_stop user can't insert a callback between last 4 callbacks solution: set order variable: reset_learning_rate = 10 print_evaluation = 10 record_evaluation = 20 early_stop = 30 user-defined = some int default: according to index in callback parameter list, = index - len(callbacks) (all < 0) current callback order: before iter: user-defined -> reset_learning_rate -> user-defined after iter: user-defined -> print_evaluation -> user-defined -> record_evaluation -> user-defined -> early_stop -> user-defined
-
- 06 Dec, 2016 1 commit
-
-
wxchan authored
* add feature importances in python; add pandas support * solve best_iteration issue
-
- 05 Dec, 2016 2 commits
- 02 Dec, 2016 1 commit
-
-
wxchan authored
1. merge python-package 2. add dump model to json 3. fix bugs 4. clean code with pylint 5. update python examples
-
- 01 Dec, 2016 1 commit
-
-
Guolin Ke authored
-