1. 09 Jan, 2017 2 commits
  2. 08 Jan, 2017 1 commit
  3. 07 Jan, 2017 2 commits
  4. 06 Jan, 2017 1 commit
  5. 05 Jan, 2017 1 commit
  6. 04 Jan, 2017 2 commits
    • 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
    • wxchan's avatar
      add more config to sklearn (#160) · c4778e73
      wxchan authored
      c4778e73
  7. 03 Jan, 2017 2 commits
  8. 02 Jan, 2017 1 commit
  9. 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
  10. 31 Dec, 2016 4 commits
  11. 30 Dec, 2016 1 commit
  12. 28 Dec, 2016 2 commits
  13. 27 Dec, 2016 1 commit
  14. 26 Dec, 2016 1 commit
  15. 23 Dec, 2016 2 commits
  16. 21 Dec, 2016 1 commit
  17. 19 Dec, 2016 2 commits
  18. 18 Dec, 2016 2 commits
  19. 17 Dec, 2016 1 commit
  20. 14 Dec, 2016 1 commit
  21. 13 Dec, 2016 1 commit
  22. 12 Dec, 2016 1 commit
  23. 09 Dec, 2016 1 commit
  24. 08 Dec, 2016 1 commit
  25. 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
  26. 06 Dec, 2016 1 commit
  27. 05 Dec, 2016 2 commits