
Welcome to LightGBM’s documentation! — LightGBM 4.6.0.99 …
Welcome to LightGBM’s documentation! LightGBM is a gradient boosting framework that uses tree based learning algorithms. It is designed to be distributed and efficient with the following advantages: …
Welcome to LightGBM’s documentation! — LightGBM 4.6.0 …
LightGBM is a gradient boosting framework that uses tree based learning algorithms. It is designed to be distributed and efficient with the following advantages:
Python-package Introduction — LightGBM 4.6.0.99 documentation
LightGBM can use categorical features as input directly. It doesn’t need to convert to one-hot encoding, and is much faster than one-hot encoding (about 8x speed-up).
Features — LightGBM 4.6.0.99 documentation
More specifically, LightGBM sorts the histogram (for a categorical feature) according to its accumulated values (sum_gradient / sum_hessian) and then finds the best split on the sorted histogram.
Quick Start — LightGBM 4.6.0.99 documentation
The most important parameters which new users should take a look at are located into Core Parameters and the top of Learning Control Parameters sections of the full detailed list of LightGBM’s parameters.
Parameters — LightGBM 4.6.0.99 documentation
LightGBM will randomly select a subset of features on each iteration (tree) if feature_fraction is smaller than 1.0. For example, if you set it to 0.8, LightGBM will select 80% of features before training each tree
Installation Guide — LightGBM 4.6.0.99 documentation
Users who want to perform benchmarking can make LightGBM output time costs for different internal routines by adding -DUSE_TIMETAG=ON to CMake flags. It is possible to build LightGBM in debug …
Basic Walkthrough • lightgbm
Using the lightgbm () function In a first step, you need to convert data to numeric. Afterwards, you are ready to fit the model by the lightgbm () function.
LightGBM GPU Tutorial — LightGBM 4.6.0.99 documentation
You will see two binaries are generated, lightgbm and lib_lightgbm.so. If you are building on macOS, you probably need to remove macro BOOST_COMPUTE_USE_OFFLINE_CACHE in …
Python API — LightGBM 4.6.0.99 documentation
Python API Data Structure API Training API