1. 01 Jan, 2017 2 commits
    • Guolin Ke's avatar
      fix #154 · 7f778877
      Guolin Ke authored
      7f778877
    • wxchan's avatar
      support pickle (#151) · a034ceeb
      wxchan authored
      * support pickle
      
      * add pickle/joblib test; change test_basic to unittest
      
      * remove file for deepcopy
      
      * fix tests
      
      * test basic predict from file
      
      * Revert "test basic predict from file"
      
      This reverts commit 60d2c3158537fd56081f60f1d6d120cedd782887.
      
      * test predict from file
      
      * use tempfile for copy & pickle
      
      * use tempfile w/o binary mode
      
      * clean test
      a034ceeb
  2. 31 Dec, 2016 4 commits
  3. 30 Dec, 2016 1 commit
  4. 28 Dec, 2016 2 commits
  5. 27 Dec, 2016 1 commit
  6. 26 Dec, 2016 1 commit
  7. 23 Dec, 2016 2 commits
  8. 21 Dec, 2016 1 commit
  9. 19 Dec, 2016 2 commits
  10. 18 Dec, 2016 2 commits
  11. 17 Dec, 2016 1 commit
  12. 14 Dec, 2016 1 commit
  13. 13 Dec, 2016 1 commit
  14. 12 Dec, 2016 1 commit
  15. 09 Dec, 2016 1 commit
  16. 08 Dec, 2016 1 commit
  17. 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
  18. 06 Dec, 2016 1 commit
  19. 05 Dec, 2016 2 commits
  20. 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
  21. 01 Dec, 2016 4 commits
  22. 30 Nov, 2016 7 commits