engine.py 27.3 KB
Newer Older
wxchan's avatar
wxchan committed
1
# coding: utf-8
2
"""Library with training routines of LightGBM."""
wxchan's avatar
wxchan committed
3
import collections
4
import copy
wxchan's avatar
wxchan committed
5
from operator import attrgetter
6
from pathlib import Path
7
from typing import Any, Callable, Dict, List, Optional, Tuple, Union
8

wxchan's avatar
wxchan committed
9
import numpy as np
10

wxchan's avatar
wxchan committed
11
from . import callback
12
13
from .basic import (Booster, Dataset, LightGBMError, _ArrayLike, _choose_param_value, _ConfigAliases, _InnerPredictor,
                    _log_warning)
14
from .compat import SKLEARN_INSTALLED, _LGBMGroupKFold, _LGBMStratifiedKFold
wxchan's avatar
wxchan committed
15

16
_LGBM_CustomObjectiveFunction = Callable[
17
18
    [np.ndarray, Dataset],
    Tuple[_ArrayLike, _ArrayLike]
19
20
]
_LGBM_CustomMetricFunction = Callable[
21
    [np.ndarray, Dataset],
22
23
    Tuple[str, float, bool]
]
wxchan's avatar
wxchan committed
24

25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

def train(
    params: Dict[str, Any],
    train_set: Dataset,
    num_boost_round: int = 100,
    valid_sets: Optional[List[Dataset]] = None,
    valid_names: Optional[List[str]] = None,
    fobj: Optional[_LGBM_CustomObjectiveFunction] = None,
    feval: Optional[Union[_LGBM_CustomMetricFunction, List[_LGBM_CustomMetricFunction]]] = None,
    init_model: Optional[Union[str, Path, Booster]] = None,
    feature_name: Union[List[str], str] = 'auto',
    categorical_feature: Union[List[str], List[int], str] = 'auto',
    keep_training_booster: bool = False,
    callbacks: Optional[List[Callable]] = None
) -> Booster:
40
    """Perform the training with given parameters.
wxchan's avatar
wxchan committed
41
42
43
44

    Parameters
    ----------
    params : dict
45
        Parameters for training.
Guolin Ke's avatar
Guolin Ke committed
46
    train_set : Dataset
47
48
        Data to be trained on.
    num_boost_round : int, optional (default=100)
wxchan's avatar
wxchan committed
49
        Number of boosting iterations.
50
    valid_sets : list of Dataset, or None, optional (default=None)
51
        List of data to be evaluated on during training.
52
    valid_names : list of str, or None, optional (default=None)
53
54
        Names of ``valid_sets``.
    fobj : callable or None, optional (default=None)
wxchan's avatar
wxchan committed
55
        Customized objective function.
56
57
58
        Should accept two parameters: preds, train_data,
        and return (grad, hess).

59
            preds : numpy 1-D array
60
                The predicted values.
61
62
                Predicted values are returned before any transformation,
                e.g. they are raw margin instead of probability of positive class for binary task.
63
64
            train_data : Dataset
                The training dataset.
65
            grad : list, numpy 1-D array or pandas Series
66
67
                The value of the first order derivative (gradient) of the loss
                with respect to the elements of preds for each sample point.
68
            hess : list, numpy 1-D array or pandas Series
69
70
                The value of the second order derivative (Hessian) of the loss
                with respect to the elements of preds for each sample point.
71
72
73
74
75

        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.

76
    feval : callable, list of callable, or None, optional (default=None)
wxchan's avatar
wxchan committed
77
        Customized evaluation function.
Akshita Dixit's avatar
Akshita Dixit committed
78
        Each evaluation function should accept two parameters: preds, eval_data,
79
        and return (eval_name, eval_result, is_higher_better) or list of such tuples.
80

81
            preds : numpy 1-D array
82
                The predicted values.
83
84
                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.
Akshita Dixit's avatar
Akshita Dixit committed
85
            eval_data : Dataset
86
                A ``Dataset`` to evaluate.
87
            eval_name : str
88
                The name of evaluation function (without whitespaces).
89
90
91
92
93
            eval_result : float
                The eval result.
            is_higher_better : bool
                Is eval result higher better, e.g. AUC is ``is_higher_better``.

94
95
        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].
96
97
        To ignore the default metric corresponding to the used objective,
        set the ``metric`` parameter to the string ``"None"`` in ``params``.
98
    init_model : str, pathlib.Path, Booster or None, optional (default=None)
99
        Filename of LightGBM model or Booster instance used for continue training.
100
    feature_name : list of str, or 'auto', optional (default="auto")
101
102
        Feature names.
        If 'auto' and data is pandas DataFrame, data columns names are used.
103
    categorical_feature : list of str or int, or 'auto', optional (default="auto")
104
105
        Categorical features.
        If list of int, interpreted as indices.
106
        If list of str, interpreted as feature names (need to specify ``feature_name`` as well).
107
        If 'auto' and data is pandas DataFrame, pandas unordered categorical columns are used.
108
        All values in categorical features will be cast to int32 and thus should be less than int32 max value (2147483647).
109
        Large values could be memory consuming. Consider using consecutive integers starting from zero.
110
        All negative values in categorical features will be treated as missing values.
111
        The output cannot be monotonically constrained with respect to a categorical feature.
112
        Floating point numbers in categorical features will be rounded towards 0.
113
114
115
    keep_training_booster : bool, optional (default=False)
        Whether the returned Booster will be used to keep training.
        If False, the returned value will be converted into _InnerPredictor before returning.
116
        This means you won't be able to use ``eval``, ``eval_train`` or ``eval_valid`` methods of the returned Booster.
117
118
        When your model is very large and cause the memory error,
        you can try to set this param to ``True`` to avoid the model conversion performed during the internal call of ``model_to_string``.
119
        You can still use _InnerPredictor as ``init_model`` for future continue training.
120
    callbacks : list of callable, or None, optional (default=None)
121
        List of callback functions that are applied at each iteration.
122
        See Callbacks in Python API for more information.
wxchan's avatar
wxchan committed
123
124
125

    Returns
    -------
126
127
    booster : Booster
        The trained Booster model.
wxchan's avatar
wxchan committed
128
    """
129
    # create predictor first
130
    params = copy.deepcopy(params)
131
    if fobj is not None:
132
133
        for obj_alias in _ConfigAliases.get("objective"):
            params.pop(obj_alias, None)
134
        params['objective'] = 'none'
135
    for alias in _ConfigAliases.get("num_iterations"):
136
        if alias in params:
137
            num_boost_round = params.pop(alias)
138
            _log_warning(f"Found `{alias}` in params. Will use it instead of argument")
139
    params["num_iterations"] = num_boost_round
140
141
142
143
144
145
146
147
    # setting early stopping via global params should be possible
    params = _choose_param_value(
        main_param_name="early_stopping_round",
        params=params,
        default_value=None
    )
    if params["early_stopping_round"] is None:
        params.pop("early_stopping_round")
148
    first_metric_only = params.get('first_metric_only', False)
149

150
151
    if num_boost_round <= 0:
        raise ValueError("num_boost_round should be greater than zero.")
152
    predictor: Optional[_InnerPredictor] = None
153
    if isinstance(init_model, (str, Path)):
154
        predictor = _InnerPredictor(model_file=init_model, pred_parameter=params)
wxchan's avatar
wxchan committed
155
    elif isinstance(init_model, Booster):
156
        predictor = init_model._to_predictor(dict(init_model.params, **params))
157
    init_iteration = predictor.num_total_iteration if predictor is not None else 0
158
    # check dataset
Guolin Ke's avatar
Guolin Ke committed
159
    if not isinstance(train_set, Dataset):
160
        raise TypeError("Training only accepts Dataset object")
Guolin Ke's avatar
Guolin Ke committed
161

162
163
164
165
    train_set._update_params(params) \
             ._set_predictor(predictor) \
             .set_feature_name(feature_name) \
             .set_categorical_feature(categorical_feature)
Guolin Ke's avatar
Guolin Ke committed
166

wxchan's avatar
wxchan committed
167
168
    is_valid_contain_train = False
    train_data_name = "training"
Guolin Ke's avatar
Guolin Ke committed
169
    reduced_valid_sets = []
wxchan's avatar
wxchan committed
170
    name_valid_sets = []
171
    if valid_sets is not None:
Guolin Ke's avatar
Guolin Ke committed
172
173
        if isinstance(valid_sets, Dataset):
            valid_sets = [valid_sets]
174
        if isinstance(valid_names, str):
wxchan's avatar
wxchan committed
175
            valid_names = [valid_names]
Guolin Ke's avatar
Guolin Ke committed
176
        for i, valid_data in enumerate(valid_sets):
177
            # reduce cost for prediction training data
Guolin Ke's avatar
Guolin Ke committed
178
            if valid_data is train_set:
wxchan's avatar
wxchan committed
179
180
181
182
                is_valid_contain_train = True
                if valid_names is not None:
                    train_data_name = valid_names[i]
                continue
Guolin Ke's avatar
Guolin Ke committed
183
            if not isinstance(valid_data, Dataset):
184
                raise TypeError("Training only accepts Dataset object")
Nikita Titov's avatar
Nikita Titov committed
185
            reduced_valid_sets.append(valid_data._update_params(params).set_reference(train_set))
186
            if valid_names is not None and len(valid_names) > i:
wxchan's avatar
wxchan committed
187
188
                name_valid_sets.append(valid_names[i])
            else:
189
                name_valid_sets.append(f'valid_{i}')
190
    # process callbacks
191
    if callbacks is None:
192
        callbacks_set = set()
wxchan's avatar
wxchan committed
193
194
195
    else:
        for i, cb in enumerate(callbacks):
            cb.__dict__.setdefault('order', i - len(callbacks))
196
        callbacks_set = set(callbacks)
wxchan's avatar
wxchan committed
197

198
199
200
201
202
203
204
205
206
207
208
209
    if "early_stopping_round" in params:
        callbacks_set.add(
            callback.early_stopping(
                stopping_rounds=params["early_stopping_round"],
                first_metric_only=first_metric_only,
                verbose=_choose_param_value(
                    main_param_name="verbosity",
                    params=params,
                    default_value=1
                ).pop("verbosity") > 0
            )
        )
210

211
212
213
214
    callbacks_before_iter_set = {cb for cb in callbacks_set if getattr(cb, 'before_iteration', False)}
    callbacks_after_iter_set = callbacks_set - callbacks_before_iter_set
    callbacks_before_iter = sorted(callbacks_before_iter_set, key=attrgetter('order'))
    callbacks_after_iter = sorted(callbacks_after_iter_set, key=attrgetter('order'))
wxchan's avatar
wxchan committed
215

216
    # construct booster
217
218
219
220
    try:
        booster = Booster(params=params, train_set=train_set)
        if is_valid_contain_train:
            booster.set_train_data_name(train_data_name)
221
        for valid_set, name_valid_set in zip(reduced_valid_sets, name_valid_sets):
222
223
224
225
226
            booster.add_valid(valid_set, name_valid_set)
    finally:
        train_set._reverse_update_params()
        for valid_set in reduced_valid_sets:
            valid_set._reverse_update_params()
227
    booster.best_iteration = 0
wxchan's avatar
wxchan committed
228

229
    # start training
230
    for i in range(init_iteration, init_iteration + num_boost_round):
wxchan's avatar
wxchan committed
231
232
        for cb in callbacks_before_iter:
            cb(callback.CallbackEnv(model=booster,
233
                                    params=params,
wxchan's avatar
wxchan committed
234
                                    iteration=i,
235
236
                                    begin_iteration=init_iteration,
                                    end_iteration=init_iteration + num_boost_round,
wxchan's avatar
wxchan committed
237
238
239
240
241
242
                                    evaluation_result_list=None))

        booster.update(fobj=fobj)

        evaluation_result_list = []
        # check evaluation result.
243
        if valid_sets is not None:
wxchan's avatar
wxchan committed
244
245
246
247
248
249
            if is_valid_contain_train:
                evaluation_result_list.extend(booster.eval_train(feval))
            evaluation_result_list.extend(booster.eval_valid(feval))
        try:
            for cb in callbacks_after_iter:
                cb(callback.CallbackEnv(model=booster,
250
                                        params=params,
wxchan's avatar
wxchan committed
251
                                        iteration=i,
252
253
                                        begin_iteration=init_iteration,
                                        end_iteration=init_iteration + num_boost_round,
wxchan's avatar
wxchan committed
254
                                        evaluation_result_list=evaluation_result_list))
255
256
        except callback.EarlyStopException as earlyStopException:
            booster.best_iteration = earlyStopException.best_iteration + 1
wxchan's avatar
wxchan committed
257
            evaluation_result_list = earlyStopException.best_score
wxchan's avatar
wxchan committed
258
            break
259
    booster.best_score = collections.defaultdict(collections.OrderedDict)
wxchan's avatar
wxchan committed
260
261
    for dataset_name, eval_name, score, _ in evaluation_result_list:
        booster.best_score[dataset_name][eval_name] = score
262
    if not keep_training_booster:
263
        booster.model_from_string(booster.model_to_string()).free_dataset()
wxchan's avatar
wxchan committed
264
265
266
    return booster


267
class CVBooster:
268
269
270
271
272
273
274
275
276
277
278
279
280
    """CVBooster in LightGBM.

    Auxiliary data structure to hold and redirect all boosters of ``cv`` function.
    This class has the same methods as Booster class.
    All method calls are actually performed for underlying Boosters and then all returned results are returned in a list.

    Attributes
    ----------
    boosters : list of Booster
        The list of underlying fitted models.
    best_iteration : int
        The best iteration of fitted model.
    """
281

282
    def __init__(self):
283
284
285
286
        """Initialize the CVBooster.

        Generally, no need to instantiate manually.
        """
287
        self.boosters = []
288
        self.best_iteration = -1
289

290
291
    def _append(self, booster):
        """Add a booster to CVBooster."""
292
293
294
        self.boosters.append(booster)

    def __getattr__(self, name):
295
        """Redirect methods call of CVBooster."""
296
297
        def handler_function(*args, **kwargs):
            """Call methods with each booster, and concatenate their results."""
298
299
300
301
            ret = []
            for booster in self.boosters:
                ret.append(getattr(booster, name)(*args, **kwargs))
            return ret
302
        return handler_function
wxchan's avatar
wxchan committed
303

304

305
306
def _make_n_folds(full_data, folds, nfold, params, seed, fpreproc=None, stratified=True,
                  shuffle=True, eval_train_metric=False):
307
    """Make a n-fold list of Booster from random indices."""
wxchan's avatar
wxchan committed
308
309
    full_data = full_data.construct()
    num_data = full_data.num_data()
310
    if folds is not None:
311
312
313
314
315
316
        if not hasattr(folds, '__iter__') and not hasattr(folds, 'split'):
            raise AttributeError("folds should be a generator or iterator of (train_idx, test_idx) tuples "
                                 "or scikit-learn splitter object with split method")
        if hasattr(folds, 'split'):
            group_info = full_data.get_group()
            if group_info is not None:
317
                group_info = np.array(group_info, dtype=np.int32, copy=False)
318
                flatted_group = np.repeat(range(len(group_info)), repeats=group_info)
319
            else:
320
                flatted_group = np.zeros(num_data, dtype=np.int32)
321
            folds = folds.split(X=np.empty(num_data), y=full_data.get_label(), groups=flatted_group)
wxchan's avatar
wxchan committed
322
    else:
323
324
325
        if any(params.get(obj_alias, "") in {"lambdarank", "rank_xendcg", "xendcg",
                                             "xe_ndcg", "xe_ndcg_mart", "xendcg_mart"}
               for obj_alias in _ConfigAliases.get("objective")):
wxchan's avatar
wxchan committed
326
            if not SKLEARN_INSTALLED:
327
                raise LightGBMError('scikit-learn is required for ranking cv')
328
            # ranking task, split according to groups
329
            group_info = np.array(full_data.get_group(), dtype=np.int32, copy=False)
330
            flatted_group = np.repeat(range(len(group_info)), repeats=group_info)
331
            group_kfold = _LGBMGroupKFold(n_splits=nfold)
332
            folds = group_kfold.split(X=np.empty(num_data), groups=flatted_group)
wxchan's avatar
wxchan committed
333
334
        elif stratified:
            if not SKLEARN_INSTALLED:
335
                raise LightGBMError('scikit-learn is required for stratified cv')
336
            skf = _LGBMStratifiedKFold(n_splits=nfold, shuffle=shuffle, random_state=seed)
337
            folds = skf.split(X=np.empty(num_data), y=full_data.get_label())
extremin's avatar
extremin committed
338
        else:
wxchan's avatar
wxchan committed
339
340
341
342
343
            if shuffle:
                randidx = np.random.RandomState(seed).permutation(num_data)
            else:
                randidx = np.arange(num_data)
            kstep = int(num_data / nfold)
344
345
346
            test_id = [randidx[i: i + kstep] for i in range(0, num_data, kstep)]
            train_id = [np.concatenate([test_id[i] for i in range(nfold) if k != i]) for k in range(nfold)]
            folds = zip(train_id, test_id)
wxchan's avatar
wxchan committed
347

348
    ret = CVBooster()
wxchan's avatar
wxchan committed
349
    for train_idx, test_idx in folds:
350
351
        train_set = full_data.subset(sorted(train_idx))
        valid_set = full_data.subset(sorted(test_idx))
wxchan's avatar
wxchan committed
352
353
        # run preprocessing on the data set if needed
        if fpreproc is not None:
wxchan's avatar
wxchan committed
354
            train_set, valid_set, tparam = fpreproc(train_set, valid_set, params.copy())
wxchan's avatar
wxchan committed
355
        else:
wxchan's avatar
wxchan committed
356
            tparam = params
357
        cvbooster = Booster(tparam, train_set)
358
359
        if eval_train_metric:
            cvbooster.add_valid(train_set, 'train')
360
        cvbooster.add_valid(valid_set, 'valid')
361
        ret._append(cvbooster)
wxchan's avatar
wxchan committed
362
363
    return ret

wxchan's avatar
wxchan committed
364

365
def _agg_cv_result(raw_results):
366
    """Aggregate cross-validation results."""
367
    cvmap = collections.OrderedDict()
wxchan's avatar
wxchan committed
368
369
370
    metric_type = {}
    for one_result in raw_results:
        for one_line in one_result:
371
            key = f"{one_line[0]} {one_line[1]}"
372
            metric_type[key] = one_line[3]
373
            cvmap.setdefault(key, [])
374
            cvmap[key].append(one_line[2])
wxchan's avatar
wxchan committed
375
    return [('cv_agg', k, np.mean(v), metric_type[k], np.std(v)) for k, v in cvmap.items()]
wxchan's avatar
wxchan committed
376

wxchan's avatar
wxchan committed
377

378
def cv(params, train_set, num_boost_round=100,
379
       folds=None, nfold=5, stratified=True, shuffle=True,
wxchan's avatar
wxchan committed
380
       metrics=None, fobj=None, feval=None, init_model=None,
381
       feature_name='auto', categorical_feature='auto',
382
       fpreproc=None, seed=0, callbacks=None, eval_train_metric=False,
383
       return_cvbooster=False):
Andrew Ziem's avatar
Andrew Ziem committed
384
    """Perform the cross-validation with given parameters.
wxchan's avatar
wxchan committed
385
386
387
388

    Parameters
    ----------
    params : dict
389
        Parameters for Booster.
Guolin Ke's avatar
Guolin Ke committed
390
    train_set : Dataset
391
        Data to be trained on.
392
    num_boost_round : int, optional (default=100)
wxchan's avatar
wxchan committed
393
        Number of boosting iterations.
394
    folds : generator or iterator of (train_idx, test_idx) tuples, scikit-learn splitter object or None, optional (default=None)
395
        If generator or iterator, it should yield the train and test indices for each fold.
396
        If object, it should be one of the scikit-learn splitter classes
397
        (https://scikit-learn.org/stable/modules/classes.html#splitter-classes)
398
        and have ``split`` method.
399
        This argument has highest priority over other data split arguments.
400
    nfold : int, optional (default=5)
wxchan's avatar
wxchan committed
401
        Number of folds in CV.
402
403
    stratified : bool, optional (default=True)
        Whether to perform stratified sampling.
404
    shuffle : bool, optional (default=True)
405
        Whether to shuffle before splitting data.
406
    metrics : str, list of str, or None, optional (default=None)
407
408
409
        Evaluation metrics to be monitored while CV.
        If not None, the metric in ``params`` will be overridden.
    fobj : callable or None, optional (default=None)
410
411
412
413
        Customized objective function.
        Should accept two parameters: preds, train_data,
        and return (grad, hess).

414
            preds : numpy 1-D array
415
                The predicted values.
416
417
                Predicted values are returned before any transformation,
                e.g. they are raw margin instead of probability of positive class for binary task.
418
419
            train_data : Dataset
                The training dataset.
420
            grad : list, numpy 1-D array or pandas Series
421
422
                The value of the first order derivative (gradient) of the loss
                with respect to the elements of preds for each sample point.
423
            hess : list, numpy 1-D array or pandas Series
424
425
                The value of the second order derivative (Hessian) of the loss
                with respect to the elements of preds for each sample point.
426
427
428
429
430

        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.

431
    feval : callable, list of callable, or None, optional (default=None)
432
        Customized evaluation function.
433
        Each evaluation function should accept two parameters: preds, eval_data,
434
        and return (eval_name, eval_result, is_higher_better) or list of such tuples.
435

436
            preds : numpy 1-D array
437
                The predicted values.
438
439
                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.
440
441
            eval_data : Dataset
                A ``Dataset`` to evaluate.
442
            eval_name : str
Andrew Ziem's avatar
Andrew Ziem committed
443
                The name of evaluation function (without whitespace).
444
445
446
447
448
            eval_result : float
                The eval result.
            is_higher_better : bool
                Is eval result higher better, e.g. AUC is ``is_higher_better``.

449
450
        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].
451
452
        To ignore the default metric corresponding to the used objective,
        set ``metrics`` to the string ``"None"``.
453
    init_model : str, pathlib.Path, Booster or None, optional (default=None)
454
        Filename of LightGBM model or Booster instance used for continue training.
455
    feature_name : list of str, or 'auto', optional (default="auto")
456
457
        Feature names.
        If 'auto' and data is pandas DataFrame, data columns names are used.
458
    categorical_feature : list of str or int, or 'auto', optional (default="auto")
459
460
        Categorical features.
        If list of int, interpreted as indices.
461
        If list of str, interpreted as feature names (need to specify ``feature_name`` as well).
462
        If 'auto' and data is pandas DataFrame, pandas unordered categorical columns are used.
463
        All values in categorical features will be cast to int32 and thus should be less than int32 max value (2147483647).
464
        Large values could be memory consuming. Consider using consecutive integers starting from zero.
465
        All negative values in categorical features will be treated as missing values.
466
        The output cannot be monotonically constrained with respect to a categorical feature.
467
        Floating point numbers in categorical features will be rounded towards 0.
468
469
    fpreproc : callable or None, optional (default=None)
        Preprocessing function that takes (dtrain, dtest, params)
wxchan's avatar
wxchan committed
470
        and returns transformed versions of those.
471
    seed : int, optional (default=0)
wxchan's avatar
wxchan committed
472
        Seed used to generate the folds (passed to numpy.random.seed).
473
    callbacks : list of callable, or None, optional (default=None)
474
        List of callback functions that are applied at each iteration.
475
        See Callbacks in Python API for more information.
476
477
478
    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.
479
480
    return_cvbooster : bool, optional (default=False)
        Whether to return Booster models trained on each fold through ``CVBooster``.
wxchan's avatar
wxchan committed
481
482
483

    Returns
    -------
484
485
486
487
    eval_hist : dict
        Evaluation history.
        The dictionary has the following format:
        {'metric1-mean': [values], 'metric1-stdv': [values],
Qiwei Ye's avatar
Qiwei Ye committed
488
        'metric2-mean': [values], 'metric2-stdv': [values],
489
        ...}.
490
        If ``return_cvbooster=True``, also returns trained boosters via ``cvbooster`` key.
wxchan's avatar
wxchan committed
491
    """
Guolin Ke's avatar
Guolin Ke committed
492
    if not isinstance(train_set, Dataset):
493
        raise TypeError("Training only accepts Dataset object")
Guolin Ke's avatar
Guolin Ke committed
494

495
    params = copy.deepcopy(params)
496
    if fobj is not None:
497
498
        for obj_alias in _ConfigAliases.get("objective"):
            params.pop(obj_alias, None)
499
        params['objective'] = 'none'
500
    for alias in _ConfigAliases.get("num_iterations"):
501
        if alias in params:
502
            _log_warning(f"Found '{alias}' in params. Will use it instead of 'num_boost_round' argument")
503
            num_boost_round = params.pop(alias)
504
    params["num_iterations"] = num_boost_round
505
506
507
508
509
510
511
512
    # setting early stopping via global params should be possible
    params = _choose_param_value(
        main_param_name="early_stopping_round",
        params=params,
        default_value=None
    )
    if params["early_stopping_round"] is None:
        params.pop("early_stopping_round")
513
    first_metric_only = params.get('first_metric_only', False)
514

515
516
    if num_boost_round <= 0:
        raise ValueError("num_boost_round should be greater than zero.")
517
    if isinstance(init_model, (str, Path)):
518
        predictor = _InnerPredictor(model_file=init_model, pred_parameter=params)
Guolin Ke's avatar
Guolin Ke committed
519
    elif isinstance(init_model, Booster):
520
        predictor = init_model._to_predictor(dict(init_model.params, **params))
Guolin Ke's avatar
Guolin Ke committed
521
522
523
    else:
        predictor = None

Peter's avatar
Peter committed
524
    if metrics is not None:
525
526
        for metric_alias in _ConfigAliases.get("metric"):
            params.pop(metric_alias, None)
Peter's avatar
Peter committed
527
        params['metric'] = metrics
wxchan's avatar
wxchan committed
528

529
530
531
532
533
    train_set._update_params(params) \
             ._set_predictor(predictor) \
             .set_feature_name(feature_name) \
             .set_categorical_feature(categorical_feature)

wxchan's avatar
wxchan committed
534
    results = collections.defaultdict(list)
535
536
    cvfolds = _make_n_folds(train_set, folds=folds, nfold=nfold,
                            params=params, seed=seed, fpreproc=fpreproc,
537
538
                            stratified=stratified, shuffle=shuffle,
                            eval_train_metric=eval_train_metric)
wxchan's avatar
wxchan committed
539
540

    # setup callbacks
541
    if callbacks is None:
wxchan's avatar
wxchan committed
542
543
544
545
546
        callbacks = set()
    else:
        for i, cb in enumerate(callbacks):
            cb.__dict__.setdefault('order', i - len(callbacks))
        callbacks = set(callbacks)
547
548
549
550
551
552
553
554
555
556
557
558
559

    if "early_stopping_round" in params:
        callbacks.add(
            callback.early_stopping(
                stopping_rounds=params["early_stopping_round"],
                first_metric_only=first_metric_only,
                verbose=_choose_param_value(
                    main_param_name="verbosity",
                    params=params,
                    default_value=1
                ).pop("verbosity") > 0
            )
        )
wxchan's avatar
wxchan committed
560

wxchan's avatar
wxchan committed
561
562
563
564
    callbacks_before_iter = {cb for cb in callbacks if getattr(cb, 'before_iteration', False)}
    callbacks_after_iter = callbacks - callbacks_before_iter
    callbacks_before_iter = sorted(callbacks_before_iter, key=attrgetter('order'))
    callbacks_after_iter = sorted(callbacks_after_iter, key=attrgetter('order'))
wxchan's avatar
wxchan committed
565

566
    for i in range(num_boost_round):
wxchan's avatar
wxchan committed
567
        for cb in callbacks_before_iter:
568
569
            cb(callback.CallbackEnv(model=cvfolds,
                                    params=params,
wxchan's avatar
wxchan committed
570
571
572
573
                                    iteration=i,
                                    begin_iteration=0,
                                    end_iteration=num_boost_round,
                                    evaluation_result_list=None))
wxchan's avatar
wxchan committed
574
        cvfolds.update(fobj=fobj)
575
        res = _agg_cv_result(cvfolds.eval_valid(feval))
wxchan's avatar
wxchan committed
576
        for _, key, mean, _, std in res:
577
578
            results[f'{key}-mean'].append(mean)
            results[f'{key}-stdv'].append(std)
wxchan's avatar
wxchan committed
579
580
        try:
            for cb in callbacks_after_iter:
581
582
                cb(callback.CallbackEnv(model=cvfolds,
                                        params=params,
wxchan's avatar
wxchan committed
583
584
585
586
                                        iteration=i,
                                        begin_iteration=0,
                                        end_iteration=num_boost_round,
                                        evaluation_result_list=res))
587
588
        except callback.EarlyStopException as earlyStopException:
            cvfolds.best_iteration = earlyStopException.best_iteration + 1
wxchan's avatar
wxchan committed
589
            for k in results:
590
                results[k] = results[k][:cvfolds.best_iteration]
wxchan's avatar
wxchan committed
591
            break
592
593
594
595

    if return_cvbooster:
        results['cvbooster'] = cvfolds

wxchan's avatar
wxchan committed
596
    return dict(results)