lightgbm.cv
- lightgbm.cv(params, train_set, num_boost_round=100, folds=None, nfold=5, stratified=True, shuffle=True, metrics=None, fobj=None, feval=None, init_model=None, feature_name='auto', categorical_feature='auto', early_stopping_rounds=None, fpreproc=None, verbose_eval=None, show_stdv=True, seed=0, callbacks=None, eval_train_metric=False, return_cvbooster=False)[source]
Perform the cross-validation with given parameters.
- Parameters
params (dict) – Parameters for Booster.
train_set (Dataset) – Data to be trained on.
num_boost_round (int, optional (default=100)) – Number of boosting iterations.
folds (generator or iterator of (train_idx, test_idx) tuples, scikit-learn splitter object or None, optional (default=None)) – If generator or iterator, it should yield the train and test indices for each fold. If object, it should be one of the scikit-learn splitter classes (https://scikit-learn.org/stable/modules/classes.html#splitter-classes) and have
split
method. This argument has highest priority over other data split arguments.nfold (int, optional (default=5)) – Number of folds in CV.
stratified (bool, optional (default=True)) – Whether to perform stratified sampling.
shuffle (bool, optional (default=True)) – Whether to shuffle before splitting data.
metrics (str, list of str, or None, optional (default=None)) – Evaluation metrics to be monitored while CV. If not None, the metric in
params
will be overridden.fobj (callable or None, optional (default=None)) –
Customized objective function. Should accept two parameters: preds, train_data, and return (grad, hess).
- predslist or numpy 1-D array
The predicted values. Predicted values are returned before any transformation, e.g. they are raw margin instead of probability of positive class for binary task.
- train_dataDataset
The training dataset.
- gradlist or numpy 1-D array
The value of the first order derivative (gradient) of the loss with respect to the elements of preds for each sample point.
- hesslist or numpy 1-D array
The value of the second order derivative (Hessian) of the loss with respect to the elements of preds for each sample point.
For multi-class task, the preds is group by class_id first, then group by row_id. If you want to get i-th row preds in j-th class, the access way is score[j * num_data + i] and you should group grad and hess in this way as well.
feval (callable, list of callable, or None, optional (default=None)) –
Customized evaluation function. Each evaluation function should accept two parameters: preds, train_data, and return (eval_name, eval_result, is_higher_better) or list of such tuples.
- predslist or numpy 1-D array
The predicted values. If
fobj
is specified, predicted values are returned before any transformation, e.g. they are raw margin instead of probability of positive class for binary task in this case.- train_dataDataset
The training dataset.
- eval_namestr
The name of evaluation function (without whitespace).
- eval_resultfloat
The eval result.
- is_higher_betterbool
Is eval result higher better, e.g. AUC is
is_higher_better
.
For multi-class task, the preds is group by class_id first, then group by row_id. If you want to get i-th row preds in j-th class, the access way is preds[j * num_data + i]. To ignore the default metric corresponding to the used objective, set
metrics
to the string"None"
.init_model (str, pathlib.Path, Booster or None, optional (default=None)) – Filename of LightGBM model or Booster instance used for continue training.
feature_name (list of str, or 'auto', optional (default="auto")) – Feature names. If ‘auto’ and data is pandas DataFrame, data columns names are used.
categorical_feature (list of str or int, or 'auto', optional (default="auto")) – Categorical features. If list of int, interpreted as indices. If list of str, interpreted as feature names (need to specify
feature_name
as well). If ‘auto’ and data is pandas DataFrame, pandas unordered categorical columns are used. All values in categorical features should be less than int32 max value (2147483647). Large values could be memory consuming. Consider using consecutive integers starting from zero. All negative values in categorical features will be treated as missing values. The output cannot be monotonically constrained with respect to a categorical feature.early_stopping_rounds (int or None, optional (default=None)) – Activates early stopping. CV score needs to improve at least every
early_stopping_rounds
round(s) to continue. Requires at least one metric. If there’s more than one, will check all of them. To check only the first metric, set thefirst_metric_only
parameter toTrue
inparams
. Last entry in evaluation history is the one from the best iteration.fpreproc (callable or None, optional (default=None)) – Preprocessing function that takes (dtrain, dtest, params) and returns transformed versions of those.
verbose_eval (bool, int, or None, optional (default=None)) – Whether to display the progress. If True, progress will be displayed at every boosting stage. If int, progress will be displayed at every given
verbose_eval
boosting stage.show_stdv (bool, optional (default=True)) – Whether to display the standard deviation in progress. Results are not affected by this parameter, and always contain std.
seed (int, optional (default=0)) – Seed used to generate the folds (passed to numpy.random.seed).
callbacks (list of callable, or None, optional (default=None)) – List of callback functions that are applied at each iteration. See Callbacks in Python API for more information.
eval_train_metric (bool, optional (default=False)) – Whether to display the train metric in progress. The score of the metric is calculated again after each training step, so there is some impact on performance.
return_cvbooster (bool, optional (default=False)) – Whether to return Booster models trained on each fold through
CVBooster
.
- Returns
eval_hist – Evaluation history. The dictionary has the following format: {‘metric1-mean’: [values], ‘metric1-stdv’: [values], ‘metric2-mean’: [values], ‘metric2-stdv’: [values], …}. If
return_cvbooster=True
, also returns trained boosters viacvbooster
key.- Return type
dict