10分钟
安装步骤:
- 安装步骤:
- 下载源码,编译
lib_lightgbm.so
(对于windows
则是lib_lightgbm.dll
) git clone --recursive https://github.com/Microsoft/LightGBM# 对于 windows 用户,需要执行:# git submodule init# git submodule updatecd LightGBMmkdir buildcd buildcmake ..make -j4 如果需要支持GPU
,则执行cmake
时指定: cmake -DUSE_GPU=1 ..# 如果你已经安装了 NVIDIA OpenGL,则使用:# cmake -DUSE_GPU=1 -DOpenCL_LIBRARY=/usr/local/cuda/lib64/libOpenCL.so -DOpenCL_INCLUDE_DIR=/usr/local/cuda/include/ .. 如果想要protobuf
来保存和加载模型,则先安装protobuf c++
版本,然后使用: cmake -DUSE_PROTO=ON .. 当前版本不支持该功能 - 安装
python
支持- 其中
--precompile
指示:已经编译过,不需要再次编译
- 其中
- 下载源码,编译
cd python-packagesudo python setup.py install --precompile
学员评价