About 400 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. 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.

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

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

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

  7. Python API — LightGBM 4.6.0.99 documentation

    Python API Data Structure APITraining API

  8. 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 …

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

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