首页 > 常用平台 > 正文

lightgbm

标签:lightgbm


目录

https://github.com/Microsoft/LightGBM

参考http://www.jianshu.com/p/48e82dbb142b

参考APIhttps://lightgbm.readthedocs.io/en/latest/index.html

安装

安装cxx包

apt-get update
apt-get install git
apt-get install cmake
apt-get install openmpi-bin openmpi-doc libopenmpi-dev
git clone --recursive https://github.com/Microsoft/LightGBM ; cd LightGBM
mkdir build ; cd build
cmake -DUSE_MPI=ON ..
make -j4

安装py

pip install lightgbm

验证

import lightgbm as lgb


上篇: 强化学习概述
下篇: 经典cnn模型们

comment here..