1. 02 May, 2017 1 commit
  2. 26 Apr, 2017 1 commit
  3. 18 Apr, 2017 1 commit
  4. 17 Apr, 2017 1 commit
  5. 15 Apr, 2017 1 commit
  6. 13 Apr, 2017 2 commits
  7. 09 Apr, 2017 1 commit
    • Huan Zhang's avatar
      Initial GPU acceleration support for LightGBM (#368) · 0bb4a825
      Huan Zhang authored
      * add dummy gpu solver code
      
      * initial GPU code
      
      * fix crash bug
      
      * first working version
      
      * use asynchronous copy
      
      * use a better kernel for root
      
      * parallel read histogram
      
      * sparse features now works, but no acceleration, compute on CPU
      
      * compute sparse feature on CPU simultaneously
      
      * fix big bug; add gpu selection; add kernel selection
      
      * better debugging
      
      * clean up
      
      * add feature scatter
      
      * Add sparse_threshold control
      
      * fix a bug in feature scatter
      
      * clean up debug
      
      * temporarily add OpenCL kernels for k=64,256
      
      * fix up CMakeList and definition USE_GPU
      
      * add OpenCL kernels as string literals
      
      * Add boost.compute as a submodule
      
      * add boost dependency into CMakeList
      
      * fix opencl pragma
      
      * use pinned memory for histogram
      
      * use pinned buffer for gradients and hessians
      
      * better debugging message
      
      * add double precision support on GPU
      
      * fix boost version in CMakeList
      
      * Add a README
      
      * reconstruct GPU initialization code for ResetTrainingData
      
      * move data to GPU in parallel
      
      * fix a bug during feature copy
      
      * update gpu kernels
      
      * update gpu code
      
      * initial port to LightGBM v2
      
      * speedup GPU data loading process
      
      * Add 4-bit bin support to GPU
      
      * re-add sparse_threshold parameter
      
      * remove kMaxNumWorkgroups and allows an unlimited number of features
      
      * add feature mask support for skipping unused features
      
      * enable kernel cache
      
      * use GPU kernels withoug feature masks when all features are used
      
      * REAdme.
      
      * REAdme.
      
      * update README
      
      * fix typos (#349)
      
      * change compile to gcc on Apple as default
      
      * clean vscode related file
      
      * refine api of constructing from sampling data.
      
      * fix bug in the last commit.
      
      * more efficient algorithm to sample k from n.
      
      * fix bug in filter bin
      
      * change to boost from average output.
      
      * fix tests.
      
      * only stop training when all classes are finshed in multi-class.
      
      * limit the max tree output. change hessian in multi-class objective.
      
      * robust tree model loading.
      
      * fix test.
      
      * convert the probabilities to raw score in boost_from_average of classification.
      
      * fix the average label for binary classification.
      
      * Add boost_from_average to docs (#354)
      
      * don't use "ConvertToRawScore" for self-defined objective function.
      
      * boost_from_average seems doesn't work well in binary classification. remove it.
      
      * For a better jump link (#355)
      
      * Update Python-API.md
      
      * for a better jump in page
      
      A space is needed between `#` and the headers content according to Github's markdown format [guideline](https://guides.github.com/features/mastering-markdown/)
      
      After adding the spaces, we can jump to the exact position in page by click the link.
      
      * fixed something mentioned by @wxchan
      
      * Update Python-API.md
      
      * add FitByExistingTree.
      
      * adapt GPU tree learner for FitByExistingTree
      
      * avoid NaN output.
      
      * update boost.compute
      
      * fix typos (#361)
      
      * fix broken links (#359)
      
      * update README
      
      * disable GPU acceleration by default
      
      * fix image url
      
      * cleanup debug macro
      
      * remove old README
      
      * do not save sparse_threshold_ in FeatureGroup
      
      * add details for new GPU settings
      
      * ignore submodule when doing pep8 check
      
      * allocate workspace for at least one thread during builing Feature4
      
      * move sparse_threshold to class Dataset
      
      * remove duplicated code in GPUTreeLearner::Split
      
      * Remove duplicated code in FindBestThresholds and BeforeFindBestSplit
      
      * do not rebuild ordered gradients and hessians for sparse features
      
      * support feature groups in GPUTreeLearner
      
      * Initial parallel learners with GPU support
      
      * add option device, cleanup code
      
      * clean up FindBestThresholds; add some omp parallel
      
      * constant hessian optimization for GPU
      
      * Fix GPUTreeLearner crash when there is zero feature
      
      * use np.testing.assert_almost_equal() to compare lists of floats in tests
      
      * travis for GPU
      0bb4a825
  8. 02 Apr, 2017 1 commit
  9. 28 Mar, 2017 1 commit
  10. 24 Mar, 2017 1 commit
  11. 22 Mar, 2017 1 commit
  12. 01 Mar, 2017 2 commits
  13. 18 Feb, 2017 1 commit
  14. 03 Feb, 2017 1 commit
  15. 02 Feb, 2017 1 commit
  16. 28 Jan, 2017 1 commit
    • wxchan's avatar
      [python-package] add plot metrics (#266) · 58565547
      wxchan authored
      * add plot metrics
      
      * move 'raise Exception' to check_not_tuple_of_2_elements
      
      * rename 'plot_metrics' to 'plot_metric'
      
      * fix misleading message/docs
      
      * change 'Metrics' in title to 'Metric'
      
      * fix misleading comment
      58565547
  17. 25 Jan, 2017 1 commit
    • wxchan's avatar
      [python-package] add plot tree (#262) · 8980fc72
      wxchan authored
      * add plot tree
      
      * add docs
      
      * add example
      
      * add test
      
      * fix test
      
      * fix decision type
      
      * add show_info
      
      * use feature name if available
      8980fc72
  18. 23 Jan, 2017 1 commit
  19. 20 Jan, 2017 1 commit
  20. 16 Jan, 2017 1 commit
    • wxchan's avatar
      fix bug for pandas auto categorical_feature (#218) · 57d55272
      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
      57d55272
  21. 12 Jan, 2017 2 commits
  22. 09 Jan, 2017 1 commit
    • wxchan's avatar
      refine pmml.py (#179) · 7f4610a8
      wxchan authored
      * add pmml to test
      
      * refine pmml.py
      
      * use ~n instead of -n-1
      
      * change map to list comprehension
      
      * fix check
      
      * fix 'use ~n instead of -n-1'
      
      * fix exception
      7f4610a8
  23. 08 Jan, 2017 2 commits
    • wxchan's avatar
      `_is_constructed` -> `handle is not None`; add FAQ for docs (#173) · 1b7643ba
      wxchan authored
      * use handle is not None for _is_constructed
      
      * sort imports; clean code; move FAQ to docs
      1b7643ba
    • Guolin Ke's avatar
      R package (#168) · 551d59ca
      Guolin Ke authored
      * finish R's c_api
      
      * clean code
      
      * fix sizeof pointer in 32bit system.
      
      * add predictor class
      
      * add Dataset class
      
      * format code
      
      * add booster
      
      * add type check for expose function
      
      * add a simple callback
      
      * add all callbacks
      
      * finish the basic training logic
      
      * update docs
      
      * add an simple training interface
      
      * add basic test
      
      * adapt the changes in c_api
      
      * add test for Dataset
      
      * add test for custom obj/eval functions
      
      * fix python test
      
      * fix bug in metadata init
      
      * fix R CMD check
      551d59ca
  24. 06 Jan, 2017 1 commit
  25. 04 Jan, 2017 3 commits
  26. 03 Jan, 2017 1 commit
  27. 02 Jan, 2017 2 commits
  28. 01 Jan, 2017 1 commit
    • 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
  29. 31 Dec, 2016 1 commit
  30. 28 Dec, 2016 1 commit
  31. 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
  32. 19 Dec, 2016 1 commit
  33. 08 Dec, 2016 1 commit