1. 21 Aug, 2019 2 commits
  2. 13 Jun, 2019 1 commit
  3. 12 May, 2019 1 commit
  4. 29 Apr, 2019 1 commit
  5. 27 Jan, 2019 1 commit
  6. 09 Sep, 2018 1 commit
  7. 29 Aug, 2018 1 commit
    • James Lamb's avatar
      [R-package] CRAN fixes (#1499) · eded794e
      James Lamb authored
      * Fixed typos in docs
      
      * Fixed inconsistencies in documentation
      
      * Updated strategy for registering routines
      
      * Fixed issues caused by smashing multiple functions into one Rd
      
      * Fixed issues with documentation
      
      * Removed VignetteBuilder and updated Rbuildignore
      
      * Added R build artefacts to gitignore
      
      * Added namespacing on data.table set function. Updated handling of CMakeLists file to get around CRAN check.
      
      * Updated build instructions
      
      * Added R build script
      
      * Removed build_r.sh script and updated R-package install instructions
      eded794e
  8. 28 Apr, 2018 1 commit
  9. 16 Mar, 2018 1 commit
  10. 27 Dec, 2017 1 commit
  11. 01 Nov, 2017 1 commit
  12. 14 Jul, 2017 2 commits
  13. 13 Jul, 2017 1 commit
    • Laurae's avatar
      [R-package] Fallback to MinGW when VS build fails (#664) · 3421bc6c
      Laurae authored
      * Change VS -> MinGW for CRAN
      
      * Documentation to switch to MinGW by default
      
      * Force cmake to run twice
      
      * Try again dual build for Rtools
      
      * Switch to cmake for building twice
      
      * Try with Visual Studio as default, MinGW as fallback
      
      * Try to remove VS appropriately when failing
      
      * Attempt to get rid of build folder first
      
      * Switch to unlink from rm rf
      
      * Change lib_folder correctly when VS fails
      
      * Add README updates from Microsoft/LightGBM@1c8355c
      
      * Update default compiler doc and add GPU online install doc
      
      * Better GPU doc
      3421bc6c
  14. 22 Jun, 2017 1 commit
  15. 20 Jun, 2017 2 commits
    • Guolin Ke's avatar
      rollback cmakelists · 2e0a8077
      Guolin Ke authored
      2e0a8077
    • Guolin Ke's avatar
      [python] Submit to PyPI (#635) · 80c641cd
      Guolin Ke authored
      * add make command to the python package.
      
      * Update README.rst
      
      * Update README.rst
      
      * Update README.rst
      
      * fix tests.
      
      * fix unix build
      
      * update readme
      
      * fix setup.py
      
      * update travis
      
      * Update .travis.yml
      
      * Update test.py
      
      * some fixes.
      
      * check the 64-bit python
      
      * fix build.
      
      * refine MANIFEST.in
      
      * update Manifest.in
      
      * add more build options.
      
      * Add fatal in cmake
      
      * fix a endif.
      
      * fix bugs.
      
      * fix pep8
      
      * add test for the pip package build
      
      * add test pip install in travis.
      
      * fix version with pre-compile dll
      
      * fix readme.rst
      
      * update readme
      80c641cd
  16. 14 Jun, 2017 1 commit
  17. 11 Jun, 2017 2 commits
  18. 06 Jun, 2017 3 commits
  19. 05 Jun, 2017 1 commit
    • Guolin Ke's avatar
      Compile R package by custom tool chain. (#584) · f98d75fc
      Guolin Ke authored
      * add R's library file to vs project and cmake.
      
      * support using dll built by vs.
      
      * better search for the library file.
      
      * remove mingw related doc .
      
      * update document.
      
      * Let R handle the library compile.
      
      * try fix build from github.
      
      * Update README.md
      
      * cleaner build.
      
      * fix the install problem in linux.
      
      * Update README.md
      f98d75fc
  20. 30 May, 2017 2 commits
  21. 09 May, 2017 1 commit
  22. 05 May, 2017 1 commit
    • JesseLimtiaco's avatar
      Adding ability to load model from string in R (#472) · beb5fc5e
      JesseLimtiaco authored
      * Update lgb.Booster.R
      
      Added method to call LGBM_BoosterLoadModelFromString_R if model_str is provided for initialization, added option to load from model_str in lgb.load
      
      * Update lightgbm_R.cpp
      
      Adding LGBM_BoosterLoadModelFromString_R
      
      * Update lightgbm_R.cpp
      
      Added LGBM_BoosterSaveModelToString_R
      
      * Update lightgbm_R.cpp
      
      * Update lgb.Booster.R
      
      Added save_model_to_string method
      
      * Update lgb.Booster.R
      
      Implemented @Laurae2 comments
      
      * Update lgb.Booster.R
      
      * Update lightgbm_R.h
      
      Added load and save model from/to string exports
      beb5fc5e
  23. 04 May, 2017 1 commit
  24. 24 Apr, 2017 1 commit
  25. 10 Mar, 2017 1 commit
  26. 13 Jan, 2017 1 commit
  27. 12 Jan, 2017 1 commit
  28. 11 Jan, 2017 1 commit
    • Kirill Sevastyanenko's avatar
      Stylistic changes r package (#184) · 2035c54b
      Kirill Sevastyanenko authored
      * src & callbacks
      
      * lgb.Booster and utils
      
      * cv
      
      * wip lgb.Dataset
      
      * lgb.Dataset
      
      * lgb.Predictor
      
      * lgb.train
      
      * typos
      
      * add flags to facilitate macosx compilation
      
      * fix basic_string template error with clang
      
      * most unfortunate mode of development
      
      * fixup tests
      
      * last test
      
      * roxygen
      
      * roxygen v5.x.x
      2035c54b
  29. 10 Jan, 2017 1 commit
  30. 08 Jan, 2017 1 commit
    • 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