1. 10 Dec, 2018 1 commit
  2. 16 Oct, 2018 1 commit
  3. 25 Sep, 2018 1 commit
  4. 27 Aug, 2018 1 commit
  5. 31 Jul, 2018 1 commit
  6. 24 May, 2018 1 commit
  7. 23 Dec, 2017 1 commit
  8. 07 Sep, 2017 1 commit
    • Nikita Titov's avatar
      [docs] [python] docstrings improving (#894) · de51990e
      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
      de51990e
  9. 06 Jul, 2017 1 commit
  10. 15 Apr, 2017 1 commit
  11. 28 Mar, 2017 1 commit
  12. 16 Jan, 2017 1 commit
  13. 10 Jan, 2017 1 commit
    • wxchan's avatar
      refine compatibility (#186) · 76c44d78
      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)
      76c44d78
  14. 08 Jan, 2017 1 commit
  15. 06 Jan, 2017 1 commit
  16. 04 Jan, 2017 1 commit
    • wxchan's avatar
      python code style with pep8 (#161) · dd425973
      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
      dd425973
  17. 23 Dec, 2016 1 commit
    • wxchan's avatar
      rewrite test with unittest (#142) · db18367e
      wxchan authored
      * add troubleshooting
      
      * use unittest
      
      * update unittest version
      
      * fix test_engine.py
      
      * fix test_sklearn.py
      
      * default eval_metric by subclass
      
      * add test grid search
      
      * remove verbose_eval
      db18367e
  18. 18 Dec, 2016 1 commit
  19. 14 Dec, 2016 1 commit
  20. 09 Dec, 2016 1 commit
  21. 07 Dec, 2016 1 commit
    • wxchan's avatar
      re-define callback order (#114) · f3d33582
      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
      f3d33582
  22. 06 Dec, 2016 1 commit
  23. 02 Dec, 2016 1 commit
    • wxchan's avatar
      Squash into one commit: · eba6d200
      wxchan authored
      1. merge python-package
      2. add dump model to json
      3. fix bugs
      4. clean code with pylint
      5. update python examples
      eba6d200
  24. 01 Dec, 2016 2 commits
  25. 30 Nov, 2016 1 commit
  26. 29 Nov, 2016 3 commits
  27. 27 Nov, 2016 1 commit