About 600 results
Open links in new tab
  1. 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: …

  2. 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).

  3. 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.

  4. 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.

  5. lightgbm.LGBMRegressor — LightGBM 4.6.0.99 documentation

    See Callbacks in Python API for more information. init_model (str, pathlib.Path, Booster, LGBMModel or None, optional (default=None)) – Filename of LightGBM model, Booster instance or LGBMModel …

  6. 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

  7. Advanced Topics — LightGBM 4.6.0.99 documentation

    LightGBM offers good accuracy with integer-encoded categorical features. LightGBM applies Fisher (1958) to find the optimal split over categories as described here.

  8. Light Gradient Boosting Machine • lightgbm

    lightgbm is tested automatically on every commit, across many combinations of operating system, R version, and compiler. This section describes how to test the package locally while you are developing.

  9. lightgbm.LGBMClassifier — LightGBM 4.6.0.99 documentation

    init_model (str, pathlib.Path, Booster, LGBMModel or None, optional (default=None)) – Filename of LightGBM model, Booster instance or LGBMModel instance used for continue training.

  10. Parameters Tuning — LightGBM 4.6.0.99 documentation

    LightGBM comes with several parameters that can be used to control the number of nodes per tree. The suggestions below will speed up training, but might hurt training accuracy.