1. 21 Jan, 2018 2 commits
  2. 16 Jan, 2018 1 commit
  3. 01 Jan, 2018 1 commit
  4. 31 Dec, 2017 1 commit
  5. 29 Dec, 2017 1 commit
  6. 19 Dec, 2017 1 commit
  7. 26 Nov, 2017 1 commit
    • 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
  8. 11 Nov, 2017 1 commit
  9. 26 Oct, 2017 1 commit
    • wxchan's avatar
      fix protobuf on vs build (#1004) · 2b20569e
      wxchan authored
      * [optional] support protobuf
      
      * fix windows/LightGBM.vcxproj
      
      * add doc
      
      * fix doc
      
      * fix vs support (#2)
      
      * fix vs support
      
      * fix cmake
      2b20569e
  10. 20 Oct, 2017 1 commit
  11. 19 Oct, 2017 1 commit
  12. 18 Oct, 2017 1 commit
    • Guolin Ke's avatar
      Use one-vs-other for small categorical features. · 087ec475
      Guolin Ke authored
      commit c9e123f24fcbb159c04e6694c7f830530bb2f27e
      Author: Guolin Ke <i@yumumu.me>
      Date:   Wed Oct 18 10:00:19 2017 +0800
      
          change default max_cat_to_onehot
      
      commit 805a5c3125b9979d634922e1708877fa0fec80c6
      Author: Guolin Ke <i@yumumu.me>
      Date:   Tue Oct 17 22:57:18 2017 +0800
      
          use one hot coding for the small cats
      087ec475
  13. 16 Oct, 2017 2 commits
  14. 12 Oct, 2017 1 commit
  15. 07 Oct, 2017 1 commit
    • wxchan's avatar
      [MRG] check duplicate params (#961) · d3e88ef5
      wxchan authored
      * add get params
      
      clean codes
      
      * check duplicate params
      
      * Revert "add get params"
      
      This reverts commit ec1d8dd17aa2c83dd0d5f7716c59b6a6fb94102c.
      
      * set priority by length & check duplicate
      
      * rename function
      d3e88ef5
  16. 28 Sep, 2017 1 commit
  17. 27 Sep, 2017 2 commits
  18. 26 Sep, 2017 1 commit
  19. 02 Sep, 2017 1 commit
  20. 18 Aug, 2017 4 commits
  21. 30 Jul, 2017 1 commit
    • Guolin Ke's avatar
      Better missing value handle (#747) · 00cb04a2
      Guolin Ke authored
      * finish the data loading part
      
      * allow prediction.
      
      * fix bug for decision type.
      
      * finish split finding part
      
      * fix bugs.
      
      * bug fixed. add a test .
      
      * fix pep8 .
      
      * update documents.
      
      * fix test bugs.
      
      * fix a format
      
      * fix import error in python test.
      
      * disable missing handle in categorial features.
      
      * fix a bug.
      
      * add more tests.
      
      * fix pep8
      
      * fix bugs.
      
      * remove the missing handle code for categorical feature.
      00cb04a2
  22. 11 Jul, 2017 1 commit
  23. 09 Jul, 2017 1 commit
  24. 30 May, 2017 1 commit
    • Guolin Ke's avatar
      Support early stopping of prediction in CLI (#565) · 6d4c7b03
      Guolin Ke authored
      * fix multi-threading.
      
      * fix name style.
      
      * support in CLI version.
      
      * remove warnings.
      
      * Not default parameters.
      
      * fix if...else... .
      
      * fix bug.
      
      * fix warning.
      
      * refine c_api.
      
      * fix R-package.
      
      * fix R's warning.
      
      * fix tests.
      
      * fix pep8 .
      6d4c7b03
  25. 26 May, 2017 1 commit
  26. 16 May, 2017 1 commit
  27. 14 May, 2017 1 commit
  28. 28 Apr, 2017 1 commit
    • wxchan's avatar
      [MRG] translate model to if-else (#469) · 8a19834a
      wxchan authored
      * translate model to if-else
      
      * support multiclass and predictleaf
      
      * remove java option for now
      
      * support multi-thread
      
      * add task:convert_model
      8a19834a
  29. 27 Apr, 2017 1 commit
  30. 24 Apr, 2017 1 commit
    • Yang Zhifei's avatar
      fixed a bug in BinMapper: division by zero (#452) · fedf3971
      Yang Zhifei authored
      * fixed a bug in BinMapper: division by zero
      
      * Revert "fixed a bug in BinMapper: division by zero"
      
      This reverts commit 228380284f6a9ba174982e210e14d0aecde8e837.
      
      * added CHECK for min_data_in_bin and fixed typo
      fedf3971
  31. 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
  32. 06 Apr, 2017 1 commit
  33. 29 Mar, 2017 1 commit
  34. 22 Mar, 2017 1 commit