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 …

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

  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 …

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

  5. Python API — LightGBM 4.6.0.99 documentation

    Python API Data Structure APITraining API

  6. lightgbm.LGBMClassifier — LightGBM 4.6.0.99 documentation

    LightGBM classifier. __init__(*, boosting_type='gbdt', num_leaves=31, max_depth=-1, learning_rate=0.1, n_estimators=100, subsample_for_bin=200000, objective=None, …

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

  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 …

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

  10. Parameters Tuning — LightGBM 4.6.0.99 documentation

    LightGBM uses a custom approach for finding optimal splits for categorical features. In this process, LightGBM explores splits that break a categorical feature into two groups.