1. 16 Oct, 2018 1 commit
  2. 09 Oct, 2018 1 commit
  3. 03 Oct, 2018 1 commit
  4. 28 Sep, 2018 1 commit
  5. 25 Sep, 2018 1 commit
  6. 20 Sep, 2018 1 commit
  7. 19 Sep, 2018 1 commit
  8. 11 Sep, 2018 1 commit
  9. 06 Sep, 2018 1 commit
  10. 29 Aug, 2018 1 commit
  11. 27 Aug, 2018 1 commit
  12. 24 Aug, 2018 1 commit
  13. 19 Aug, 2018 1 commit
  14. 08 Aug, 2018 1 commit
  15. 07 Aug, 2018 1 commit
    • Nikita Titov's avatar
      [python] minor fixes in sklearn wrapper (#1572) · c04c0917
      Nikita Titov authored
      * refined random_state description
      
      * use neutral alias and fixed desc of eval_at param, since metric can be not only ndcg
      
      * simplified checks
      
      * consider verbose alias
      
      * fixed declaring function every loop iteration
      c04c0917
  16. 25 Jul, 2018 1 commit
  17. 20 Jul, 2018 1 commit
  18. 11 Jul, 2018 1 commit
    • Misha Lisovyi's avatar
      [python] Configure choice of `feature_importance_` in sklearn API (#1470) · dae75516
      Misha Lisovyi authored
      * ignore vim temporary files
      
      * add importance_type arg to sklearn API
      
      * update documentation info
      
      * remote a trailing space
      
      * remove trailing space (again :))
      
      * add instructions on importance choices to sklearn API
      
      * drop mention of constructor in the feature type setting
      
      * adding a test for different feture types
      
      * remove trailing spaces, make shorter assert in feature importance type handling test
      
      * fixing style issue introduced with the new test
      dae75516
  19. 03 Jul, 2018 1 commit
  20. 24 May, 2018 1 commit
  21. 21 May, 2018 1 commit
    • Nikita Titov's avatar
      [docs] documented crash in case categorical values is bigger max int32 (#1376) · a0c69417
      Nikita Titov authored
      * added checks for categorical features > max_int32
      
      * added tests
      
      * fixed pylint
      
      * removed warnings about overridden categorical features
      
      * Revert "removed warnings about overridden categorical features"
      
      This reverts commit 289a426c700ce8934a526cc456a1b1cd5c621db9.
      
      * a little bit more efficient checks
      
      * added notes about max values in categorical features
      
      * Revert "a little bit more efficient checks"
      
      This reverts commit bed88830243da21a2db454873c0e308126e05732.
      
      * Revert "fixed pylint"
      
      This reverts commit a229e1563b0abc1b13de6358577abf90bd529015.
      
      * Revert "added tests"
      
      This reverts commit 299e001b7550111555b80730d673d4f225cf5f74.
      
      * Revert "added checks for categorical features > max_int32"
      
      This reverts commit 2cc7afacde7c6366644f6988ccedc344752b68c7.
      a0c69417
  22. 10 May, 2018 1 commit
    • Nikita Titov's avatar
      [python][docs] reworked predict method in sklearn wrapper and docs improvements (#1351) · 41152eab
      Nikita Titov authored
      * fixed docs
      
      * reworker predict method of sklearn wrapper
      
      * fixed encapsulation
      
      * added test
      
      * fixed consistency between docstring and params docs
      
      * fixed verbose
      
      * replaced predict_proba with predict in test
      
      * fixed verbose again
      
      * fixed fraction params descriptions
      
      * added description of skip_drop and drop_rate constraints
      
      * fixed subsample_freq consistency with C++ default value
      
      * fixed nice look of params list
      
      * made force splits json file example clickable
      
      * fixed nice look of metrics list and added comma
      
      * reduced warning in test about same param specified twice
      
      * replaced pred_parameter with **kwargs in predict method
      
      * added test for **kwargs in predict method
      
      * fixed warnings
      
      * fixed pylint
      41152eab
  23. 08 May, 2018 1 commit
    • Nikita Titov's avatar
      [ci][python] updated pep8 to pycodestyle (#1358) · 21487d8a
      Nikita Titov authored
      * updated pep8 to pycodestyle
      
      * fixed E722 do not use bare 'except'
      
      * fixed W605 invalid escape sequence '\*'
      
      * fixed W504 line break after binary operator
      
      * ignore W605 invalid escape sequence '\*' in nuget builder
      
      * made pycodestyle happy
      21487d8a
  24. 05 May, 2018 1 commit
  25. 21 Apr, 2018 1 commit
  26. 19 Mar, 2018 1 commit
  27. 26 Jan, 2018 1 commit
  28. 25 Jan, 2018 1 commit
  29. 31 Dec, 2017 1 commit
  30. 29 Dec, 2017 1 commit
  31. 25 Dec, 2017 1 commit
  32. 06 Dec, 2017 1 commit
    • Cass's avatar
      [CLI][python-package][docs] Add n_estimators as num_iteration alias (#1079) · 8fd71c01
      Cass authored
      * Add n_estimators as num_iteration alias
      
      Scikit-Learn's ensemble methods use the term `n_estimators` for the number of
      iterations of training models. To make it more accessible for newcomers who are
      familiar with Scikit-Learn, it would help if the Parameters page mentioned
      `n_estimators` and what parameter that maps to within LightGBM's API.
      
      Addresses discussion brought up in #954
      
      * Add n_estimators as num_iterations alias
      
      Adds n_estimators as an alias for num_iterations in the CLI as well as Python
      libs. Additionally bumps the default for n_estimators in the Sklearn API to 100
      estimators.
      8fd71c01
  33. 26 Nov, 2017 2 commits
    • Guolin Ke's avatar
      Speed up saving and loading model (#1083) · 8a5ec366
      Guolin Ke authored
      * remove protobuf
      
      * add version number
      
      * remove pmml script
      
      * use float for split gain
      
      * fix warnings
      
      * refine the read model logic of gbdt
      
      * fix compile error
      
      * improve decode speed
      
      * fix some bugs
      
      * fix double accuracy problem
      
      * fix bug
      
      * multi-thread save model
      
      * speed up save model to string
      
      * parallel save/load model
      
      * fix some warnings.
      
      * fix warnings.
      
      * fix a bug
      
      * remove debug output
      
      * fix doc
      
      * fix max_bin warning in tests.
      
      * fix max_bin warning
      
      * fix pylint
      
      * clean code for stringToArray
      
      * clean code for TToString
      
      * remove max_bin
      
      * replace "class" with typename
      8a5ec366
    • Nikita Titov's avatar
      removed outdated code (#1084) · 8d016c12
      Nikita Titov authored
      8d016c12
  34. 16 Nov, 2017 1 commit
    • Nikita Titov's avatar
      [python] [docs] fixed objective in sklearn wrapper; added missed objectives &... · e5eb8560
      Nikita Titov authored
      [python] [docs] fixed objective in sklearn wrapper; added missed objectives & metrics to docs (#1059)
      
      * added missed aliases for task parameter
      
      * fixed indents
      
      * added missed aliases and options for tree_learner parameter
      
      * added missed objectives to docs
      
      * fixed typo in Poisson parameter and its description
      
      * fixed model_format parameter description
      
      * added missed metrics to docs
      
      * fixed sklearn objective
      
      * fixed set_params
      
      * fixed docs
      
      * added missed options to objectives
      
      * added note about ignore_column (#1061)
      e5eb8560
  35. 13 Nov, 2017 1 commit
    • Nikita Titov's avatar
      [python] max_bin parameter deprecated (#1046) · bd5e5e3e
      Nikita Titov authored
      * made max_bin parameter deprecated
      
      * fixed accidental docstrings in Sphinx
      
      * concrete version when deprecated stuff will be removed
      
      * added warnings in case of duplicated params to Dataset
      
      * fixed indents in docs
      bd5e5e3e
  36. 09 Nov, 2017 1 commit
    • wxchan's avatar
      add init_score & test cpp and python result consistency (#1007) · bc0579c8
      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
      bc0579c8
  37. 01 Nov, 2017 1 commit
  38. 30 Oct, 2017 1 commit
    • Nikita Titov's avatar
      [docs] fixed building at Python 2.x (#997) · d94ec89b
      Nikita Titov authored
      * fixed docs building at Python 2.x
      
      * updated docs building guide
      
      * get back Python 3 at Travis
      
      * test commit for OSX
      
      * be more precise with python version inpylint task
      
      * turned warnings into errors
      
      * removed linkchecker validation from osx
      
      * removed warning about not included into any toctree
      
      * docs config cleanup
      
      * refined deprecation warnings mechanism
      
      * refine docs mock mechanism
      
      * be more precise with python version in check-docs task
      
      * redused the number of code lines
      
      * refined venv deployment
      
      * rollback python version in check-docs task
      
      * revert 'refine docs mock mechanism'. autodoc_mock_imports seems to be not working
      
      * added targets for big images
      
      * rollback to default python version in check-docs task
      
      * break long lines for mobile view
      
      * replaced pip with conda where it's possible
      d94ec89b
  39. 07 Oct, 2017 1 commit
    • Nikita Titov's avatar
      [docs] move wiki to Read the Docs (#945) · 6d34fb86
      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
      6d34fb86