engine.py 28.5 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, Iterable, 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, _choose_param_value, _ConfigAliases, _InnerPredictor,
                    _LGBM_CustomObjectiveFunction, _log_warning)
14
from .compat import SKLEARN_INSTALLED, _LGBMBaseCrossValidator, _LGBMGroupKFold, _LGBMStratifiedKFold
wxchan's avatar
wxchan committed
15

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

21
22
23
24
25
_LGBM_PreprocFunction = Callable[
    [Dataset, Dataset, Dict[str, Any]],
    Tuple[Dataset, Dataset, Dict[str, Any]]
]

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,
    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
46
        Parameters for training. Values passed through ``params`` take precedence over those
        supplied via arguments.
Guolin Ke's avatar
Guolin Ke committed
47
    train_set : Dataset
48
49
        Data to be trained on.
    num_boost_round : int, optional (default=100)
wxchan's avatar
wxchan committed
50
        Number of boosting iterations.
51
    valid_sets : list of Dataset, or None, optional (default=None)
52
        List of data to be evaluated on during training.
53
    valid_names : list of str, or None, optional (default=None)
54
        Names of ``valid_sets``.
55
    feval : callable, list of callable, or None, optional (default=None)
wxchan's avatar
wxchan committed
56
        Customized evaluation function.
Akshita Dixit's avatar
Akshita Dixit committed
57
        Each evaluation function should accept two parameters: preds, eval_data,
58
        and return (eval_name, eval_result, is_higher_better) or list of such tuples.
59

60
            preds : numpy 1-D array or numpy 2-D array (for multi-class task)
61
                The predicted values.
62
                For multi-class task, preds are numpy 2-D array of shape = [n_samples, n_classes].
63
                If custom objective function is used, predicted values are returned before any transformation,
64
                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
65
            eval_data : Dataset
66
                A ``Dataset`` to evaluate.
67
            eval_name : str
68
                The name of evaluation function (without whitespaces).
69
70
71
72
73
            eval_result : float
                The eval result.
            is_higher_better : bool
                Is eval result higher better, e.g. AUC is ``is_higher_better``.

74
75
        To ignore the default metric corresponding to the used objective,
        set the ``metric`` parameter to the string ``"None"`` in ``params``.
76
    init_model : str, pathlib.Path, Booster or None, optional (default=None)
77
        Filename of LightGBM model or Booster instance used for continue training.
78
    feature_name : list of str, or 'auto', optional (default="auto")
79
80
        Feature names.
        If 'auto' and data is pandas DataFrame, data columns names are used.
81
    categorical_feature : list of str or int, or 'auto', optional (default="auto")
82
83
        Categorical features.
        If list of int, interpreted as indices.
84
        If list of str, interpreted as feature names (need to specify ``feature_name`` as well).
85
        If 'auto' and data is pandas DataFrame, pandas unordered categorical columns are used.
86
        All values in categorical features will be cast to int32 and thus should be less than int32 max value (2147483647).
87
        Large values could be memory consuming. Consider using consecutive integers starting from zero.
88
        All negative values in categorical features will be treated as missing values.
89
        The output cannot be monotonically constrained with respect to a categorical feature.
90
        Floating point numbers in categorical features will be rounded towards 0.
91
92
93
    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.
94
        This means you won't be able to use ``eval``, ``eval_train`` or ``eval_valid`` methods of the returned Booster.
95
96
        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``.
97
        You can still use _InnerPredictor as ``init_model`` for future continue training.
98
    callbacks : list of callable, or None, optional (default=None)
99
        List of callback functions that are applied at each iteration.
100
        See Callbacks in Python API for more information.
wxchan's avatar
wxchan committed
101

102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
    Note
    ----
    A custom objective function can be provided for the ``objective`` parameter.
    It should accept two parameters: preds, train_data and return (grad, hess).

        preds : numpy 1-D array or numpy 2-D array (for multi-class task)
            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_data : Dataset
            The training dataset.
        grad : numpy 1-D array or numpy 2-D array (for multi-class task)
            The value of the first order derivative (gradient) of the loss
            with respect to the elements of preds for each sample point.
        hess : numpy 1-D array or numpy 2-D array (for multi-class task)
            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, preds are numpy 2-D array of shape = [n_samples, n_classes],
    and grad and hess should be returned in the same format.

wxchan's avatar
wxchan committed
123
124
    Returns
    -------
125
126
    booster : Booster
        The trained Booster model.
wxchan's avatar
wxchan committed
127
    """
128
    # create predictor first
129
    params = copy.deepcopy(params)
130
131
132
133
134
    params = _choose_param_value(
        main_param_name='objective',
        params=params,
        default_value=None
    )
135
    fobj: Optional[_LGBM_CustomObjectiveFunction] = None
136
137
138
    if callable(params["objective"]):
        fobj = params["objective"]
        params["objective"] = 'none'
139
    for alias in _ConfigAliases.get("num_iterations"):
140
        if alias in params:
141
            num_boost_round = params.pop(alias)
142
            _log_warning(f"Found `{alias}` in params. Will use it instead of argument")
143
    params["num_iterations"] = num_boost_round
144
145
146
147
148
149
150
151
    # 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")
152
    first_metric_only = params.get('first_metric_only', False)
153

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

166
167
168
169
    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
170

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

202
203
204
205
206
207
208
209
210
211
212
213
    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
            )
        )
214

215
216
217
218
    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
219

220
    # construct booster
221
222
223
224
    try:
        booster = Booster(params=params, train_set=train_set)
        if is_valid_contain_train:
            booster.set_train_data_name(train_data_name)
225
        for valid_set, name_valid_set in zip(reduced_valid_sets, name_valid_sets):
226
227
228
229
230
            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()
231
    booster.best_iteration = 0
wxchan's avatar
wxchan committed
232

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

        booster.update(fobj=fobj)

        evaluation_result_list = []
        # check evaluation result.
247
        if valid_sets is not None:
wxchan's avatar
wxchan committed
248
249
250
251
252
253
            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,
254
                                        params=params,
wxchan's avatar
wxchan committed
255
                                        iteration=i,
256
257
                                        begin_iteration=init_iteration,
                                        end_iteration=init_iteration + num_boost_round,
wxchan's avatar
wxchan committed
258
                                        evaluation_result_list=evaluation_result_list))
259
260
        except callback.EarlyStopException as earlyStopException:
            booster.best_iteration = earlyStopException.best_iteration + 1
wxchan's avatar
wxchan committed
261
            evaluation_result_list = earlyStopException.best_score
wxchan's avatar
wxchan committed
262
            break
263
    booster.best_score = collections.defaultdict(collections.OrderedDict)
wxchan's avatar
wxchan committed
264
265
    for dataset_name, eval_name, score, _ in evaluation_result_list:
        booster.best_score[dataset_name][eval_name] = score
266
    if not keep_training_booster:
267
        booster.model_from_string(booster.model_to_string()).free_dataset()
wxchan's avatar
wxchan committed
268
269
270
    return booster


271
class CVBooster:
272
273
274
275
276
277
278
279
280
281
282
283
284
    """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.
    """
285

286
    def __init__(self):
287
288
289
290
        """Initialize the CVBooster.

        Generally, no need to instantiate manually.
        """
291
        self.boosters = []
292
        self.best_iteration = -1
293

294
    def _append(self, booster: Booster) -> None:
295
        """Add a booster to CVBooster."""
296
297
        self.boosters.append(booster)

298
    def __getattr__(self, name: str) -> Callable[[Any, Any], List[Any]]:
299
        """Redirect methods call of CVBooster."""
300
        def handler_function(*args: Any, **kwargs: Any) -> List[Any]:
301
            """Call methods with each booster, and concatenate their results."""
302
303
304
305
            ret = []
            for booster in self.boosters:
                ret.append(getattr(booster, name)(*args, **kwargs))
            return ret
306
        return handler_function
wxchan's avatar
wxchan committed
307

308

309
310
311
312
313
314
315
316
317
318
319
def _make_n_folds(
    full_data: Dataset,
    folds: Optional[Union[Iterable[Tuple[np.ndarray, np.ndarray]], _LGBMBaseCrossValidator]],
    nfold: int,
    params: Dict[str, Any],
    seed: int,
    fpreproc: Optional[_LGBM_PreprocFunction] = None,
    stratified: bool = True,
    shuffle: bool = True,
    eval_train_metric: bool = False
) -> CVBooster:
320
    """Make a n-fold list of Booster from random indices."""
wxchan's avatar
wxchan committed
321
322
    full_data = full_data.construct()
    num_data = full_data.num_data()
323
    if folds is not None:
324
325
326
327
328
329
        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:
330
                group_info = np.array(group_info, dtype=np.int32, copy=False)
331
                flatted_group = np.repeat(range(len(group_info)), repeats=group_info)
332
            else:
333
                flatted_group = np.zeros(num_data, dtype=np.int32)
334
            folds = folds.split(X=np.empty(num_data), y=full_data.get_label(), groups=flatted_group)
wxchan's avatar
wxchan committed
335
    else:
336
337
338
        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
339
            if not SKLEARN_INSTALLED:
340
                raise LightGBMError('scikit-learn is required for ranking cv')
341
            # ranking task, split according to groups
342
            group_info = np.array(full_data.get_group(), dtype=np.int32, copy=False)
343
            flatted_group = np.repeat(range(len(group_info)), repeats=group_info)
344
            group_kfold = _LGBMGroupKFold(n_splits=nfold)
345
            folds = group_kfold.split(X=np.empty(num_data), groups=flatted_group)
wxchan's avatar
wxchan committed
346
347
        elif stratified:
            if not SKLEARN_INSTALLED:
348
                raise LightGBMError('scikit-learn is required for stratified cv')
349
            skf = _LGBMStratifiedKFold(n_splits=nfold, shuffle=shuffle, random_state=seed)
350
            folds = skf.split(X=np.empty(num_data), y=full_data.get_label())
extremin's avatar
extremin committed
351
        else:
wxchan's avatar
wxchan committed
352
353
354
355
356
            if shuffle:
                randidx = np.random.RandomState(seed).permutation(num_data)
            else:
                randidx = np.arange(num_data)
            kstep = int(num_data / nfold)
357
358
359
            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
360

361
    ret = CVBooster()
wxchan's avatar
wxchan committed
362
    for train_idx, test_idx in folds:
363
364
        train_set = full_data.subset(sorted(train_idx))
        valid_set = full_data.subset(sorted(test_idx))
wxchan's avatar
wxchan committed
365
366
        # run preprocessing on the data set if needed
        if fpreproc is not None:
wxchan's avatar
wxchan committed
367
            train_set, valid_set, tparam = fpreproc(train_set, valid_set, params.copy())
wxchan's avatar
wxchan committed
368
        else:
wxchan's avatar
wxchan committed
369
            tparam = params
370
        cvbooster = Booster(tparam, train_set)
371
372
        if eval_train_metric:
            cvbooster.add_valid(train_set, 'train')
373
        cvbooster.add_valid(valid_set, 'valid')
374
        ret._append(cvbooster)
wxchan's avatar
wxchan committed
375
376
    return ret

wxchan's avatar
wxchan committed
377

378
379
380
def _agg_cv_result(
    raw_results: List[List[Tuple[str, str, float, bool]]]
) -> List[Tuple[str, str, float, bool, float]]:
381
    """Aggregate cross-validation results."""
382
    cvmap = collections.OrderedDict()
wxchan's avatar
wxchan committed
383
384
385
    metric_type = {}
    for one_result in raw_results:
        for one_line in one_result:
386
            key = f"{one_line[0]} {one_line[1]}"
387
            metric_type[key] = one_line[3]
388
            cvmap.setdefault(key, [])
389
            cvmap[key].append(one_line[2])
wxchan's avatar
wxchan committed
390
    return [('cv_agg', k, np.mean(v), metric_type[k], np.std(v)) for k, v in cvmap.items()]
wxchan's avatar
wxchan committed
391

wxchan's avatar
wxchan committed
392

393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
def cv(
    params: Dict[str, Any],
    train_set: Dataset,
    num_boost_round: int = 100,
    folds: Optional[Union[Iterable[Tuple[np.ndarray, np.ndarray]], _LGBMBaseCrossValidator]] = None,
    nfold: int = 5,
    stratified: bool = True,
    shuffle: bool = True,
    metrics: Optional[Union[str, List[str]]] = None,
    feval: Optional[Union[_LGBM_CustomMetricFunction, List[_LGBM_CustomMetricFunction]]] = None,
    init_model: Optional[Union[str, Path, Booster]] = None,
    feature_name: Union[str, List[str]] = 'auto',
    categorical_feature: Union[str, List[str], List[int]] = 'auto',
    fpreproc: Optional[_LGBM_PreprocFunction] = None,
    seed: int = 0,
    callbacks: Optional[List[Callable]] = None,
    eval_train_metric: bool = False,
    return_cvbooster: bool = False
) -> Dict[str, Any]:
Andrew Ziem's avatar
Andrew Ziem committed
412
    """Perform the cross-validation with given parameters.
wxchan's avatar
wxchan committed
413
414
415
416

    Parameters
    ----------
    params : dict
417
418
        Parameters for training. Values passed through ``params`` take precedence over those
        supplied via arguments.
Guolin Ke's avatar
Guolin Ke committed
419
    train_set : Dataset
420
        Data to be trained on.
421
    num_boost_round : int, optional (default=100)
wxchan's avatar
wxchan committed
422
        Number of boosting iterations.
423
    folds : generator or iterator of (train_idx, test_idx) tuples, scikit-learn splitter object or None, optional (default=None)
424
        If generator or iterator, it should yield the train and test indices for each fold.
425
        If object, it should be one of the scikit-learn splitter classes
426
        (https://scikit-learn.org/stable/modules/classes.html#splitter-classes)
427
        and have ``split`` method.
428
        This argument has highest priority over other data split arguments.
429
    nfold : int, optional (default=5)
wxchan's avatar
wxchan committed
430
        Number of folds in CV.
431
432
    stratified : bool, optional (default=True)
        Whether to perform stratified sampling.
433
    shuffle : bool, optional (default=True)
434
        Whether to shuffle before splitting data.
435
    metrics : str, list of str, or None, optional (default=None)
436
437
        Evaluation metrics to be monitored while CV.
        If not None, the metric in ``params`` will be overridden.
438
    feval : callable, list of callable, or None, optional (default=None)
439
        Customized evaluation function.
440
        Each evaluation function should accept two parameters: preds, eval_data,
441
        and return (eval_name, eval_result, is_higher_better) or list of such tuples.
442

443
            preds : numpy 1-D array or numpy 2-D array (for multi-class task)
444
                The predicted values.
445
                For multi-class task, preds are numpy 2-D array of shape = [n_samples, n_classes].
446
                If custom objective function is used, predicted values are returned before any transformation,
447
                e.g. they are raw margin instead of probability of positive class for binary task in this case.
448
449
            eval_data : Dataset
                A ``Dataset`` to evaluate.
450
            eval_name : str
Andrew Ziem's avatar
Andrew Ziem committed
451
                The name of evaluation function (without whitespace).
452
453
454
455
456
            eval_result : float
                The eval result.
            is_higher_better : bool
                Is eval result higher better, e.g. AUC is ``is_higher_better``.

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

488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
    Note
    ----
    A custom objective function can be provided for the ``objective`` parameter.
    It should accept two parameters: preds, train_data and return (grad, hess).

        preds : numpy 1-D array or numpy 2-D array (for multi-class task)
            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_data : Dataset
            The training dataset.
        grad : numpy 1-D array or numpy 2-D array (for multi-class task)
            The value of the first order derivative (gradient) of the loss
            with respect to the elements of preds for each sample point.
        hess : numpy 1-D array or numpy 2-D array (for multi-class task)
            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, preds are numpy 2-D array of shape = [n_samples, n_classes],
    and grad and hess should be returned in the same format.

wxchan's avatar
wxchan committed
509
510
    Returns
    -------
511
512
513
514
    eval_hist : dict
        Evaluation history.
        The dictionary has the following format:
        {'metric1-mean': [values], 'metric1-stdv': [values],
Qiwei Ye's avatar
Qiwei Ye committed
515
        'metric2-mean': [values], 'metric2-stdv': [values],
516
        ...}.
517
        If ``return_cvbooster=True``, also returns trained boosters via ``cvbooster`` key.
wxchan's avatar
wxchan committed
518
    """
Guolin Ke's avatar
Guolin Ke committed
519
    if not isinstance(train_set, Dataset):
520
        raise TypeError("Training only accepts Dataset object")
521
    params = copy.deepcopy(params)
522
523
524
525
526
    params = _choose_param_value(
        main_param_name='objective',
        params=params,
        default_value=None
    )
527
    fobj: Optional[_LGBM_CustomObjectiveFunction] = None
528
529
530
    if callable(params["objective"]):
        fobj = params["objective"]
        params["objective"] = 'none'
531
    for alias in _ConfigAliases.get("num_iterations"):
532
        if alias in params:
533
            _log_warning(f"Found '{alias}' in params. Will use it instead of 'num_boost_round' argument")
534
            num_boost_round = params.pop(alias)
535
    params["num_iterations"] = num_boost_round
536
537
538
539
540
541
542
543
    # 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")
544
    first_metric_only = params.get('first_metric_only', False)
545

546
547
    if num_boost_round <= 0:
        raise ValueError("num_boost_round should be greater than zero.")
548
    if isinstance(init_model, (str, Path)):
549
        predictor = _InnerPredictor(model_file=init_model, pred_parameter=params)
Guolin Ke's avatar
Guolin Ke committed
550
    elif isinstance(init_model, Booster):
551
        predictor = init_model._to_predictor(dict(init_model.params, **params))
Guolin Ke's avatar
Guolin Ke committed
552
553
554
    else:
        predictor = None

Peter's avatar
Peter committed
555
    if metrics is not None:
556
557
        for metric_alias in _ConfigAliases.get("metric"):
            params.pop(metric_alias, None)
Peter's avatar
Peter committed
558
        params['metric'] = metrics
wxchan's avatar
wxchan committed
559

560
561
562
563
564
    train_set._update_params(params) \
             ._set_predictor(predictor) \
             .set_feature_name(feature_name) \
             .set_categorical_feature(categorical_feature)

wxchan's avatar
wxchan committed
565
    results = collections.defaultdict(list)
566
567
    cvfolds = _make_n_folds(train_set, folds=folds, nfold=nfold,
                            params=params, seed=seed, fpreproc=fpreproc,
568
569
                            stratified=stratified, shuffle=shuffle,
                            eval_train_metric=eval_train_metric)
wxchan's avatar
wxchan committed
570
571

    # setup callbacks
572
    if callbacks is None:
wxchan's avatar
wxchan committed
573
574
575
576
577
        callbacks = set()
    else:
        for i, cb in enumerate(callbacks):
            cb.__dict__.setdefault('order', i - len(callbacks))
        callbacks = set(callbacks)
578
579
580
581
582
583
584
585
586
587
588
589
590

    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
591

wxchan's avatar
wxchan committed
592
593
594
595
    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
596

597
    for i in range(num_boost_round):
wxchan's avatar
wxchan committed
598
        for cb in callbacks_before_iter:
599
600
            cb(callback.CallbackEnv(model=cvfolds,
                                    params=params,
wxchan's avatar
wxchan committed
601
602
603
604
                                    iteration=i,
                                    begin_iteration=0,
                                    end_iteration=num_boost_round,
                                    evaluation_result_list=None))
wxchan's avatar
wxchan committed
605
        cvfolds.update(fobj=fobj)
606
        res = _agg_cv_result(cvfolds.eval_valid(feval))
wxchan's avatar
wxchan committed
607
        for _, key, mean, _, std in res:
608
609
            results[f'{key}-mean'].append(mean)
            results[f'{key}-stdv'].append(std)
wxchan's avatar
wxchan committed
610
611
        try:
            for cb in callbacks_after_iter:
612
613
                cb(callback.CallbackEnv(model=cvfolds,
                                        params=params,
wxchan's avatar
wxchan committed
614
615
616
617
                                        iteration=i,
                                        begin_iteration=0,
                                        end_iteration=num_boost_round,
                                        evaluation_result_list=res))
618
619
        except callback.EarlyStopException as earlyStopException:
            cvfolds.best_iteration = earlyStopException.best_iteration + 1
620
621
            for bst in cvfolds.boosters:
                bst.best_iteration = cvfolds.best_iteration
wxchan's avatar
wxchan committed
622
            for k in results:
623
                results[k] = results[k][:cvfolds.best_iteration]
wxchan's avatar
wxchan committed
624
            break
625
626
627
628

    if return_cvbooster:
        results['cvbooster'] = cvfolds

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