basic.py 178 KB
Newer Older
wxchan's avatar
wxchan committed
1
# coding: utf-8
2
"""Wrapper for C API of LightGBM."""
3
import abc
wxchan's avatar
wxchan committed
4
import ctypes
5
import json
wxchan's avatar
wxchan committed
6
import warnings
7
from collections import OrderedDict
8
from copy import deepcopy
9
from enum import Enum
10
from functools import wraps
11
from os import SEEK_END, environ
12
13
from os.path import getsize
from pathlib import Path
14
from tempfile import NamedTemporaryFile
15
from typing import Any, Callable, Dict, Iterable, List, Optional, Set, Tuple, Union
wxchan's avatar
wxchan committed
16
17
18
19

import numpy as np
import scipy.sparse

20
from .compat import PANDAS_INSTALLED, concat, dt_DataTable, pd_CategoricalDtype, pd_DataFrame, pd_Series
wxchan's avatar
wxchan committed
21
22
from .libpath import find_lib_path

23
24
25
26
27
28
29
30
31
__all__ = [
    'Booster',
    'Dataset',
    'LGBMDeprecationWarning',
    'LightGBMError',
    'register_logger',
    'Sequence',
]

32
_DatasetHandle = ctypes.c_void_p
33
_LGBM_EvalFunctionResultType = Tuple[str, float, bool]
34
_LGBM_BoosterBestScoreType = Dict[str, Dict[str, float]]
35
_LGBM_BoosterEvalMethodResultType = Tuple[str, str, float, bool]
36
37
_LGBM_CategoricalFeatureConfiguration = Union[List[str], List[int], str]
_LGBM_FeatureNameConfiguration = Union[List[str], str]
38
39
40
41
42
43
_LGBM_LabelType = Union[
    list,
    np.ndarray,
    pd_Series,
    pd_DataFrame
]
44
45
46
47
48
49
50
51
_LGBM_PredictDataType = Union[
    str,
    Path,
    np.ndarray,
    pd_DataFrame,
    dt_DataTable,
    scipy.sparse.spmatrix
]
52

53
54
55
ZERO_THRESHOLD = 1e-35


56
57
58
59
def _is_zero(x: float) -> bool:
    return -ZERO_THRESHOLD <= x <= ZERO_THRESHOLD


60
def _get_sample_count(total_nrow: int, params: str) -> int:
61
62
63
    sample_cnt = ctypes.c_int(0)
    _safe_call(_LIB.LGBM_GetSampleCount(
        ctypes.c_int32(total_nrow),
64
        _c_str(params),
65
66
67
68
        ctypes.byref(sample_cnt),
    ))
    return sample_cnt.value

wxchan's avatar
wxchan committed
69

70
71
72
73
74
75
class _MissingType(Enum):
    NONE = 'None'
    NAN = 'NaN'
    ZERO = 'Zero'


76
class _DummyLogger:
77
    def info(self, msg: str) -> None:
78
79
        print(msg)

80
    def warning(self, msg: str) -> None:
81
82
83
        warnings.warn(msg, stacklevel=3)


84
85
86
_LOGGER: Any = _DummyLogger()
_INFO_METHOD_NAME = "info"
_WARNING_METHOD_NAME = "warning"
87
88


89
90
91
92
def _has_method(logger: Any, method_name: str) -> bool:
    return callable(getattr(logger, method_name, None))


93
94
95
def register_logger(
    logger: Any, info_method_name: str = "info", warning_method_name: str = "warning"
) -> None:
96
97
98
99
    """Register custom logger.

    Parameters
    ----------
100
    logger : Any
101
        Custom logger.
102
103
104
105
    info_method_name : str, optional (default="info")
        Method used to log info messages.
    warning_method_name : str, optional (default="warning")
        Method used to log warning messages.
106
    """
107
108
109
110
111
112
    if not _has_method(logger, info_method_name) or not _has_method(logger, warning_method_name):
        raise TypeError(
            f"Logger must provide '{info_method_name}' and '{warning_method_name}' method"
        )

    global _LOGGER, _INFO_METHOD_NAME, _WARNING_METHOD_NAME
113
    _LOGGER = logger
114
115
    _INFO_METHOD_NAME = info_method_name
    _WARNING_METHOD_NAME = warning_method_name
116
117


118
def _normalize_native_string(func: Callable[[str], None]) -> Callable[[str], None]:
119
    """Join log messages from native library which come by chunks."""
120
    msg_normalized: List[str] = []
121
122

    @wraps(func)
123
    def wrapper(msg: str) -> None:
124
125
126
127
128
129
130
131
132
133
134
        nonlocal msg_normalized
        if msg.strip() == '':
            msg = ''.join(msg_normalized)
            msg_normalized = []
            return func(msg)
        else:
            msg_normalized.append(msg)

    return wrapper


135
def _log_info(msg: str) -> None:
136
    getattr(_LOGGER, _INFO_METHOD_NAME)(msg)
137
138


139
def _log_warning(msg: str) -> None:
140
    getattr(_LOGGER, _WARNING_METHOD_NAME)(msg)
141
142
143


@_normalize_native_string
144
def _log_native(msg: str) -> None:
145
    getattr(_LOGGER, _INFO_METHOD_NAME)(msg)
146
147


148
def _log_callback(msg: bytes) -> None:
149
    """Redirect logs from native library into Python."""
150
    _log_native(str(msg.decode('utf-8')))
151
152


153
def _load_lib() -> ctypes.CDLL:
154
    """Load LightGBM library."""
wxchan's avatar
wxchan committed
155
156
157
    lib_path = find_lib_path()
    lib = ctypes.cdll.LoadLibrary(lib_path[0])
    lib.LGBM_GetLastError.restype = ctypes.c_char_p
158
    callback = ctypes.CFUNCTYPE(None, ctypes.c_char_p)
159
    lib.callback = callback(_log_callback)  # type: ignore[attr-defined]
160
    if lib.LGBM_RegisterLogCallback(lib.callback) != 0:
161
        raise LightGBMError(lib.LGBM_GetLastError().decode('utf-8'))
wxchan's avatar
wxchan committed
162
163
    return lib

wxchan's avatar
wxchan committed
164

165
166
167
168
169
170
171
# we don't need lib_lightgbm while building docs
_LIB: ctypes.CDLL
if environ.get('LIGHTGBM_BUILD_DOC', False):
    from unittest.mock import Mock  # isort: skip
    _LIB = Mock(ctypes.CDLL)  # type: ignore
else:
    _LIB = _load_lib()
wxchan's avatar
wxchan committed
172

wxchan's avatar
wxchan committed
173

174
_NUMERIC_TYPES = (int, float, bool)
175
_ArrayLike = Union[List, np.ndarray, pd_Series]
176
177


178
def _safe_call(ret: int) -> None:
179
180
    """Check the return value from C API call.

wxchan's avatar
wxchan committed
181
182
183
    Parameters
    ----------
    ret : int
184
        The return value from C API calls.
wxchan's avatar
wxchan committed
185
186
    """
    if ret != 0:
187
        raise LightGBMError(_LIB.LGBM_GetLastError().decode('utf-8'))
wxchan's avatar
wxchan committed
188

wxchan's avatar
wxchan committed
189

190
def _is_numeric(obj: Any) -> bool:
191
    """Check whether object is a number or not, include numpy number, etc."""
wxchan's avatar
wxchan committed
192
193
194
    try:
        float(obj)
        return True
wxchan's avatar
wxchan committed
195
196
197
    except (TypeError, ValueError):
        # TypeError: obj is not a string or a number
        # ValueError: invalid literal
wxchan's avatar
wxchan committed
198
199
        return False

wxchan's avatar
wxchan committed
200

201
def _is_numpy_1d_array(data: Any) -> bool:
202
    """Check whether data is a numpy 1-D array."""
203
    return isinstance(data, np.ndarray) and len(data.shape) == 1
wxchan's avatar
wxchan committed
204

wxchan's avatar
wxchan committed
205

206
def _is_numpy_column_array(data: Any) -> bool:
207
208
209
210
211
212
213
    """Check whether data is a column numpy array."""
    if not isinstance(data, np.ndarray):
        return False
    shape = data.shape
    return len(shape) == 2 and shape[1] == 1


214
def _cast_numpy_array_to_dtype(array: np.ndarray, dtype: np.dtype) -> np.ndarray:
215
    """Cast numpy array to given dtype."""
216
217
218
219
220
    if array.dtype == dtype:
        return array
    return array.astype(dtype=dtype, copy=False)


221
def _is_1d_list(data: Any) -> bool:
222
    """Check whether data is a 1-D list."""
223
    return isinstance(data, list) and (not data or _is_numeric(data[0]))
wxchan's avatar
wxchan committed
224

wxchan's avatar
wxchan committed
225

226
227
228
def _is_1d_collection(data: Any) -> bool:
    """Check whether data is a 1-D collection."""
    return (
229
        _is_numpy_1d_array(data)
230
        or _is_numpy_column_array(data)
231
        or _is_1d_list(data)
232
233
234
235
        or isinstance(data, pd_Series)
    )


236
def _list_to_1d_numpy(data, dtype=np.float32, name='list'):
237
    """Convert data to numpy 1-D array."""
238
    if _is_numpy_1d_array(data):
239
        return _cast_numpy_array_to_dtype(data, dtype)
240
    elif _is_numpy_column_array(data):
241
242
        _log_warning('Converting column-vector to 1d array')
        array = data.ravel()
243
        return _cast_numpy_array_to_dtype(array, dtype)
244
    elif _is_1d_list(data):
wxchan's avatar
wxchan committed
245
        return np.array(data, dtype=dtype, copy=False)
246
    elif isinstance(data, pd_Series):
247
        _check_for_bad_pandas_dtypes(data.to_frame().dtypes)
248
        return np.array(data, dtype=dtype, copy=False)  # SparseArray should be supported as well
wxchan's avatar
wxchan committed
249
    else:
250
251
        raise TypeError(f"Wrong type({type(data).__name__}) for {name}.\n"
                        "It should be list, numpy 1-D array or pandas Series")
wxchan's avatar
wxchan committed
252

wxchan's avatar
wxchan committed
253

254
255
256
257
258
259
260
def _is_numpy_2d_array(data: Any) -> bool:
    """Check whether data is a numpy 2-D array."""
    return isinstance(data, np.ndarray) and len(data.shape) == 2 and data.shape[1] > 1


def _is_2d_list(data: Any) -> bool:
    """Check whether data is a 2-D list."""
261
    return isinstance(data, list) and len(data) > 0 and _is_1d_list(data[0])
262
263
264
265
266
267
268
269
270
271
272
273
274
275


def _is_2d_collection(data: Any) -> bool:
    """Check whether data is a 2-D collection."""
    return (
        _is_numpy_2d_array(data)
        or _is_2d_list(data)
        or isinstance(data, pd_DataFrame)
    )


def _data_to_2d_numpy(data: Any, dtype: type = np.float32, name: str = 'list') -> np.ndarray:
    """Convert data to numpy 2-D array."""
    if _is_numpy_2d_array(data):
276
        return _cast_numpy_array_to_dtype(data, dtype)
277
278
279
    if _is_2d_list(data):
        return np.array(data, dtype=dtype)
    if isinstance(data, pd_DataFrame):
280
        _check_for_bad_pandas_dtypes(data.dtypes)
281
        return _cast_numpy_array_to_dtype(data.values, dtype)
282
283
284
285
    raise TypeError(f"Wrong type({type(data).__name__}) for {name}.\n"
                    "It should be list of lists, numpy 2-D array or pandas DataFrame")


286
def _cfloat32_array_to_numpy(cptr: "ctypes._Pointer", length: int) -> np.ndarray:
287
    """Convert a ctypes float pointer array to a numpy array."""
wxchan's avatar
wxchan committed
288
    if isinstance(cptr, ctypes.POINTER(ctypes.c_float)):
289
        return np.ctypeslib.as_array(cptr, shape=(length,)).copy()
wxchan's avatar
wxchan committed
290
    else:
291
        raise RuntimeError('Expected float pointer')
wxchan's avatar
wxchan committed
292

Guolin Ke's avatar
Guolin Ke committed
293

294
def _cfloat64_array_to_numpy(cptr: "ctypes._Pointer", length: int) -> np.ndarray:
295
    """Convert a ctypes double pointer array to a numpy array."""
Guolin Ke's avatar
Guolin Ke committed
296
    if isinstance(cptr, ctypes.POINTER(ctypes.c_double)):
297
        return np.ctypeslib.as_array(cptr, shape=(length,)).copy()
Guolin Ke's avatar
Guolin Ke committed
298
299
300
    else:
        raise RuntimeError('Expected double pointer')

wxchan's avatar
wxchan committed
301

302
def _cint32_array_to_numpy(cptr: "ctypes._Pointer", length: int) -> np.ndarray:
303
    """Convert a ctypes int pointer array to a numpy array."""
wxchan's avatar
wxchan committed
304
    if isinstance(cptr, ctypes.POINTER(ctypes.c_int32)):
305
        return np.ctypeslib.as_array(cptr, shape=(length,)).copy()
wxchan's avatar
wxchan committed
306
    else:
307
308
309
        raise RuntimeError('Expected int32 pointer')


310
def _cint64_array_to_numpy(cptr: "ctypes._Pointer", length: int) -> np.ndarray:
311
312
    """Convert a ctypes int pointer array to a numpy array."""
    if isinstance(cptr, ctypes.POINTER(ctypes.c_int64)):
313
        return np.ctypeslib.as_array(cptr, shape=(length,)).copy()
314
315
    else:
        raise RuntimeError('Expected int64 pointer')
wxchan's avatar
wxchan committed
316

wxchan's avatar
wxchan committed
317

318
def _c_str(string: str) -> ctypes.c_char_p:
319
    """Convert a Python string to C string."""
wxchan's avatar
wxchan committed
320
321
    return ctypes.c_char_p(string.encode('utf-8'))

wxchan's avatar
wxchan committed
322

323
def _c_array(ctype: type, values: List[Any]) -> ctypes.Array:
324
    """Convert a Python array to C array."""
325
    return (ctype * len(values))(*values)  # type: ignore[operator]
wxchan's avatar
wxchan committed
326

wxchan's avatar
wxchan committed
327

328
def _json_default_with_numpy(obj: Any) -> Any:
329
330
331
332
333
334
335
336
337
    """Convert numpy classes to JSON serializable objects."""
    if isinstance(obj, (np.integer, np.floating, np.bool_)):
        return obj.item()
    elif isinstance(obj, np.ndarray):
        return obj.tolist()
    else:
        return obj


338
339
340
341
342
343
344
345
def _to_string(x: Union[int, float, str, List]) -> str:
    if isinstance(x, list):
        val_list = ",".join(str(val) for val in x)
        return f"[{val_list}]"
    else:
        return str(x)


346
def _param_dict_to_str(data: Optional[Dict[str, Any]]) -> str:
347
    """Convert Python dictionary to string, which is passed to C API."""
348
    if data is None or not data:
wxchan's avatar
wxchan committed
349
350
351
        return ""
    pairs = []
    for key, val in data.items():
352
        if isinstance(val, (list, tuple, set)) or _is_numpy_1d_array(val):
353
            pairs.append(f"{key}={','.join(map(_to_string, val))}")
354
        elif isinstance(val, (str, Path, _NUMERIC_TYPES)) or _is_numeric(val):
355
            pairs.append(f"{key}={val}")
356
        elif val is not None:
357
            raise TypeError(f'Unknown type of parameter:{key}, got:{type(val).__name__}')
wxchan's avatar
wxchan committed
358
    return ' '.join(pairs)
359

wxchan's avatar
wxchan committed
360

361
class _TempFile:
362
363
    """Proxy class to workaround errors on Windows."""

364
365
366
    def __enter__(self):
        with NamedTemporaryFile(prefix="lightgbm_tmp_", delete=True) as f:
            self.name = f.name
367
            self.path = Path(self.name)
368
        return self
wxchan's avatar
wxchan committed
369

370
    def __exit__(self, exc_type, exc_val, exc_tb):
371
372
        if self.path.is_file():
            self.path.unlink()
373

wxchan's avatar
wxchan committed
374

375
class LightGBMError(Exception):
376
377
    """Error thrown by LightGBM."""

378
379
380
    pass


381
382
383
384
385
386
387
388
# DeprecationWarning is not shown by default, so let's create our own with higher level
class LGBMDeprecationWarning(UserWarning):
    """Custom deprecation warning."""

    pass


class _ConfigAliases:
389
390
391
392
    # lazy evaluation to allow import without dynamic library, e.g., for docs generation
    aliases = None

    @staticmethod
393
    def _get_all_param_aliases() -> Dict[str, List[str]]:
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
        buffer_len = 1 << 20
        tmp_out_len = ctypes.c_int64(0)
        string_buffer = ctypes.create_string_buffer(buffer_len)
        ptr_string_buffer = ctypes.c_char_p(*[ctypes.addressof(string_buffer)])
        _safe_call(_LIB.LGBM_DumpParamAliases(
            ctypes.c_int64(buffer_len),
            ctypes.byref(tmp_out_len),
            ptr_string_buffer))
        actual_len = tmp_out_len.value
        # if buffer length is not long enough, re-allocate a buffer
        if actual_len > buffer_len:
            string_buffer = ctypes.create_string_buffer(actual_len)
            ptr_string_buffer = ctypes.c_char_p(*[ctypes.addressof(string_buffer)])
            _safe_call(_LIB.LGBM_DumpParamAliases(
                ctypes.c_int64(actual_len),
                ctypes.byref(tmp_out_len),
                ptr_string_buffer))
        aliases = json.loads(
            string_buffer.value.decode('utf-8'),
413
            object_hook=lambda obj: {k: [k] + v for k, v in obj.items()}
414
415
        )
        return aliases
416
417

    @classmethod
418
419
420
    def get(cls, *args) -> Set[str]:
        if cls.aliases is None:
            cls.aliases = cls._get_all_param_aliases()
421
422
        ret = set()
        for i in args:
423
            ret.update(cls.get_sorted(i))
424
425
        return ret

426
427
428
429
430
431
    @classmethod
    def get_sorted(cls, name: str) -> List[str]:
        if cls.aliases is None:
            cls.aliases = cls._get_all_param_aliases()
        return cls.aliases.get(name, [name])

432
    @classmethod
433
434
435
    def get_by_alias(cls, *args) -> Set[str]:
        if cls.aliases is None:
            cls.aliases = cls._get_all_param_aliases()
436
437
438
439
        ret = set(args)
        for arg in args:
            for aliases in cls.aliases.values():
                if arg in aliases:
440
                    ret.update(aliases)
441
442
443
                    break
        return ret

444

445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
def _choose_param_value(main_param_name: str, params: Dict[str, Any], default_value: Any) -> Dict[str, Any]:
    """Get a single parameter value, accounting for aliases.

    Parameters
    ----------
    main_param_name : str
        Name of the main parameter to get a value for. One of the keys of ``_ConfigAliases``.
    params : dict
        Dictionary of LightGBM parameters.
    default_value : Any
        Default value to use for the parameter, if none is found in ``params``.

    Returns
    -------
    params : dict
        A ``params`` dict with exactly one value for ``main_param_name``, and all aliases ``main_param_name`` removed.
        If both ``main_param_name`` and one or more aliases for it are found, the value of ``main_param_name`` will be preferred.
    """
    # avoid side effects on passed-in parameters
    params = deepcopy(params)

466
467
    aliases = _ConfigAliases.get_sorted(main_param_name)
    aliases = [a for a in aliases if a != main_param_name]
468
469

    # if main_param_name was provided, keep that value and remove all aliases
470
    if main_param_name in params.keys():
471
472
473
        for param in aliases:
            params.pop(param, None)
        return params
474

475
476
477
478
479
    # if main param name was not found, search for an alias
    for param in aliases:
        if param in params.keys():
            params[main_param_name] = params[param]
            break
480

481
482
483
484
485
486
487
    if main_param_name in params.keys():
        for param in aliases:
            params.pop(param, None)
        return params

    # neither of main_param_name, aliases were found
    params[main_param_name] = default_value
488
489
490
491

    return params


492
_MAX_INT32 = (1 << 31) - 1
493

494
"""Macro definition of data type in C API of LightGBM"""
495
496
497
498
_C_API_DTYPE_FLOAT32 = 0
_C_API_DTYPE_FLOAT64 = 1
_C_API_DTYPE_INT32 = 2
_C_API_DTYPE_INT64 = 3
Guolin Ke's avatar
Guolin Ke committed
499

500
"""Matrix is row major in Python"""
501
_C_API_IS_ROW_MAJOR = 1
wxchan's avatar
wxchan committed
502

503
"""Macro definition of prediction type in C API of LightGBM"""
504
505
506
507
_C_API_PREDICT_NORMAL = 0
_C_API_PREDICT_RAW_SCORE = 1
_C_API_PREDICT_LEAF_INDEX = 2
_C_API_PREDICT_CONTRIB = 3
wxchan's avatar
wxchan committed
508

509
"""Macro definition of sparse matrix type"""
510
511
_C_API_MATRIX_TYPE_CSR = 0
_C_API_MATRIX_TYPE_CSC = 1
512

513
"""Macro definition of feature importance type"""
514
515
_C_API_FEATURE_IMPORTANCE_SPLIT = 0
_C_API_FEATURE_IMPORTANCE_GAIN = 1
516

517
"""Data type of data field"""
518
519
520
521
522
523
_FIELD_TYPE_MAPPER = {
    "label": _C_API_DTYPE_FLOAT32,
    "weight": _C_API_DTYPE_FLOAT32,
    "init_score": _C_API_DTYPE_FLOAT64,
    "group": _C_API_DTYPE_INT32
}
wxchan's avatar
wxchan committed
524

525
"""String name to int feature importance type mapper"""
526
527
528
529
_FEATURE_IMPORTANCE_TYPE_MAPPER = {
    "split": _C_API_FEATURE_IMPORTANCE_SPLIT,
    "gain": _C_API_FEATURE_IMPORTANCE_GAIN
}
530

wxchan's avatar
wxchan committed
531

532
def _convert_from_sliced_object(data: np.ndarray) -> np.ndarray:
533
    """Fix the memory of multi-dimensional sliced object."""
534
    if isinstance(data, np.ndarray) and isinstance(data.base, np.ndarray):
535
        if not data.flags.c_contiguous:
536
537
            _log_warning("Usage of np.ndarray subset (sliced data) is not recommended "
                         "due to it will double the peak memory cost in LightGBM.")
538
539
540
541
            return np.copy(data)
    return data


542
def _c_float_array(data):
543
    """Get pointer of float numpy array / list."""
544
    if _is_1d_list(data):
wxchan's avatar
wxchan committed
545
        data = np.array(data, copy=False)
546
    if _is_numpy_1d_array(data):
547
        data = _convert_from_sliced_object(data)
548
        assert data.flags.c_contiguous
wxchan's avatar
wxchan committed
549
550
        if data.dtype == np.float32:
            ptr_data = data.ctypes.data_as(ctypes.POINTER(ctypes.c_float))
551
            type_data = _C_API_DTYPE_FLOAT32
wxchan's avatar
wxchan committed
552
553
        elif data.dtype == np.float64:
            ptr_data = data.ctypes.data_as(ctypes.POINTER(ctypes.c_double))
554
            type_data = _C_API_DTYPE_FLOAT64
wxchan's avatar
wxchan committed
555
        else:
556
            raise TypeError(f"Expected np.float32 or np.float64, met type({data.dtype})")
wxchan's avatar
wxchan committed
557
    else:
558
        raise TypeError(f"Unknown type({type(data).__name__})")
559
    return (ptr_data, type_data, data)  # return `data` to avoid the temporary copy is freed
wxchan's avatar
wxchan committed
560

wxchan's avatar
wxchan committed
561

562
def _c_int_array(data):
563
    """Get pointer of int numpy array / list."""
564
    if _is_1d_list(data):
wxchan's avatar
wxchan committed
565
        data = np.array(data, copy=False)
566
    if _is_numpy_1d_array(data):
567
        data = _convert_from_sliced_object(data)
568
        assert data.flags.c_contiguous
wxchan's avatar
wxchan committed
569
570
        if data.dtype == np.int32:
            ptr_data = data.ctypes.data_as(ctypes.POINTER(ctypes.c_int32))
571
            type_data = _C_API_DTYPE_INT32
wxchan's avatar
wxchan committed
572
573
        elif data.dtype == np.int64:
            ptr_data = data.ctypes.data_as(ctypes.POINTER(ctypes.c_int64))
574
            type_data = _C_API_DTYPE_INT64
wxchan's avatar
wxchan committed
575
        else:
576
            raise TypeError(f"Expected np.int32 or np.int64, met type({data.dtype})")
wxchan's avatar
wxchan committed
577
    else:
578
        raise TypeError(f"Unknown type({type(data).__name__})")
579
    return (ptr_data, type_data, data)  # return `data` to avoid the temporary copy is freed
wxchan's avatar
wxchan committed
580

wxchan's avatar
wxchan committed
581

582
def _is_allowed_numpy_dtype(dtype) -> bool:
583
    float128 = getattr(np, 'float128', type(None))
584
585
586
587
    return (
        issubclass(dtype, (np.integer, np.floating, np.bool_))
        and not issubclass(dtype, (np.timedelta64, float128))
    )
588
589


590
def _check_for_bad_pandas_dtypes(pandas_dtypes_series: pd_Series) -> None:
591
592
    bad_pandas_dtypes = [
        f'{column_name}: {pandas_dtype}'
593
        for column_name, pandas_dtype in pandas_dtypes_series.items()
594
        if not _is_allowed_numpy_dtype(pandas_dtype.type)
595
596
597
598
    ]
    if bad_pandas_dtypes:
        raise ValueError('pandas dtypes must be int, float or bool.\n'
                         f'Fields with bad pandas dtypes: {", ".join(bad_pandas_dtypes)}')
599
600


601
602
603
604
605
606
def _data_from_pandas(
    data,
    feature_name: Optional[_LGBM_FeatureNameConfiguration],
    categorical_feature: Optional[_LGBM_CategoricalFeatureConfiguration],
    pandas_categorical: Optional[List[List]]
):
607
    if isinstance(data, pd_DataFrame):
608
609
        if len(data.shape) != 2 or data.shape[0] < 1:
            raise ValueError('Input data must be 2 dimensional and non empty.')
610
        if feature_name == 'auto' or feature_name is None:
611
            data = data.rename(columns=str, copy=False)
612
        cat_cols = [col for col, dtype in zip(data.columns, data.dtypes) if isinstance(dtype, pd_CategoricalDtype)]
613
        cat_cols_not_ordered = [col for col in cat_cols if not data[col].cat.ordered]
614
615
616
617
618
        if pandas_categorical is None:  # train dataset
            pandas_categorical = [list(data[col].cat.categories) for col in cat_cols]
        else:
            if len(cat_cols) != len(pandas_categorical):
                raise ValueError('train and valid dataset categorical_feature do not match.')
619
            for col, category in zip(cat_cols, pandas_categorical):
620
621
                if list(data[col].cat.categories) != list(category):
                    data[col] = data[col].cat.set_categories(category)
622
        if len(cat_cols):  # cat_cols is list
623
            data = data.copy(deep=False)  # not alter origin DataFrame
624
            data[cat_cols] = data[cat_cols].apply(lambda x: x.cat.codes).replace({-1: np.nan})
625
626
627
        if categorical_feature is not None:
            if feature_name is None:
                feature_name = list(data.columns)
628
            if categorical_feature == 'auto':  # use cat cols from DataFrame
629
                categorical_feature = cat_cols_not_ordered
630
631
            else:  # use cat cols specified by user
                categorical_feature = list(categorical_feature)
632
633
        if feature_name == 'auto':
            feature_name = list(data.columns)
634
        _check_for_bad_pandas_dtypes(data.dtypes)
635
636
637
        df_dtypes = [dtype.type for dtype in data.dtypes]
        df_dtypes.append(np.float32)  # so that the target dtype considers floats
        target_dtype = np.find_common_type(df_dtypes, [])
638
639
640
641
642
643
644
645
646
647
        try:
            # most common case (no nullable dtypes)
            data = data.to_numpy(dtype=target_dtype, copy=False)
        except TypeError:
            # 1.0 <= pd version < 1.1 and nullable dtypes, least common case
            # raises error because array is casted to type(pd.NA) and there's no na_value argument
            data = data.astype(target_dtype, copy=False).values
        except ValueError:
            # data has nullable dtypes, but we can specify na_value argument and copy will be made
            data = data.to_numpy(dtype=target_dtype, na_value=np.nan)
648
649
650
651
652
653
    else:
        if feature_name == 'auto':
            feature_name = None
        if categorical_feature == 'auto':
            categorical_feature = None
    return data, feature_name, categorical_feature, pandas_categorical
654
655


656
657
658
659
def _dump_pandas_categorical(
    pandas_categorical: Optional[List[List]],
    file_name: Optional[Union[str, Path]] = None
) -> str:
660
    categorical_json = json.dumps(pandas_categorical, default=_json_default_with_numpy)
661
    pandas_str = f'\npandas_categorical:{categorical_json}\n'
662
663
664
665
666
667
    if file_name is not None:
        with open(file_name, 'a') as f:
            f.write(pandas_str)
    return pandas_str


668
669
670
def _load_pandas_categorical(
    file_name: Optional[Union[str, Path]] = None,
    model_str: Optional[str] = None
671
) -> Optional[List[List]]:
672
673
    pandas_key = 'pandas_categorical:'
    offset = -len(pandas_key)
674
    if file_name is not None:
675
        max_offset = -getsize(file_name)
676
677
678
679
        with open(file_name, 'rb') as f:
            while True:
                if offset < max_offset:
                    offset = max_offset
680
                f.seek(offset, SEEK_END)
681
682
683
684
                lines = f.readlines()
                if len(lines) >= 2:
                    break
                offset *= 2
685
        last_line = lines[-1].decode('utf-8').strip()
686
        if not last_line.startswith(pandas_key):
687
            last_line = lines[-2].decode('utf-8').strip()
688
    elif model_str is not None:
689
690
691
692
693
694
        idx = model_str.rfind('\n', 0, offset)
        last_line = model_str[idx:].strip()
    if last_line.startswith(pandas_key):
        return json.loads(last_line[len(pandas_key):])
    else:
        return None
695
696


697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
class Sequence(abc.ABC):
    """
    Generic data access interface.

    Object should support the following operations:

    .. code-block::

        # Get total row number.
        >>> len(seq)
        # Random access by row index. Used for data sampling.
        >>> seq[10]
        # Range data access. Used to read data in batch when constructing Dataset.
        >>> seq[0:100]
        # Optionally specify batch_size to control range data read size.
        >>> seq.batch_size

    - With random access, **data sampling does not need to go through all data**.
    - With range data access, there's **no need to read all data into memory thus reduce memory usage**.

717
718
    .. versionadded:: 3.3.0

719
720
721
722
723
724
725
726
727
    Attributes
    ----------
    batch_size : int
        Default size of a batch.
    """

    batch_size = 4096  # Defaults to read 4K rows in each batch.

    @abc.abstractmethod
728
    def __getitem__(self, idx: Union[int, slice, List[int]]) -> np.ndarray:
729
730
731
732
733
734
735
        """Return data for given row index.

        A basic implementation should look like this:

        .. code-block:: python

            if isinstance(idx, numbers.Integral):
736
                return self._get_one_line(idx)
737
            elif isinstance(idx, slice):
738
739
                return np.stack([self._get_one_line(i) for i in range(idx.start, idx.stop)])
            elif isinstance(idx, list):
740
                # Only required if using ``Dataset.subset()``.
741
                return np.array([self._get_one_line(i) for i in idx])
742
            else:
743
                raise TypeError(f"Sequence index must be integer, slice or list, got {type(idx).__name__}")
744
745
746

        Parameters
        ----------
747
        idx : int, slice[int], list[int]
748
749
750
751
            Item index.

        Returns
        -------
752
        result : numpy 1-D array or numpy 2-D array
753
            1-D array if idx is int, 2-D array if idx is slice or list.
754
755
756
757
758
759
760
761
762
        """
        raise NotImplementedError("Sub-classes of lightgbm.Sequence must implement __getitem__()")

    @abc.abstractmethod
    def __len__(self) -> int:
        """Return row count of this sequence."""
        raise NotImplementedError("Sub-classes of lightgbm.Sequence must implement __len__()")


763
class _InnerPredictor:
764
765
766
767
768
    """_InnerPredictor of LightGBM.

    Not exposed to user.
    Used only for prediction, usually used for continued training.

Nikita Titov's avatar
Nikita Titov committed
769
770
771
    .. note::

        Can be converted from Booster, but cannot be converted to Booster.
Guolin Ke's avatar
Guolin Ke committed
772
    """
773

774
775
776
777
778
779
    def __init__(
        self,
        model_file: Optional[Union[str, Path]] = None,
        booster_handle: Optional[ctypes.c_void_p] = None,
        pred_parameter: Optional[Dict[str, Any]] = None
    ):
780
        """Initialize the _InnerPredictor.
wxchan's avatar
wxchan committed
781
782
783

        Parameters
        ----------
784
        model_file : str, pathlib.Path or None, optional (default=None)
wxchan's avatar
wxchan committed
785
            Path to the model file.
786
787
788
        booster_handle : object or None, optional (default=None)
            Handle of Booster.
        pred_parameter: dict or None, optional (default=None)
789
            Other parameters for the prediction.
wxchan's avatar
wxchan committed
790
791
792
793
794
        """
        self.handle = ctypes.c_void_p()
        self.__is_manage_handle = True
        if model_file is not None:
            """Prediction task"""
Guolin Ke's avatar
Guolin Ke committed
795
            out_num_iterations = ctypes.c_int(0)
wxchan's avatar
wxchan committed
796
            _safe_call(_LIB.LGBM_BoosterCreateFromModelfile(
797
                _c_str(str(model_file)),
wxchan's avatar
wxchan committed
798
799
                ctypes.byref(out_num_iterations),
                ctypes.byref(self.handle)))
Guolin Ke's avatar
Guolin Ke committed
800
            out_num_class = ctypes.c_int(0)
wxchan's avatar
wxchan committed
801
802
803
804
            _safe_call(_LIB.LGBM_BoosterGetNumClasses(
                self.handle,
                ctypes.byref(out_num_class)))
            self.num_class = out_num_class.value
805
            self.num_total_iteration = out_num_iterations.value
806
            self.pandas_categorical = _load_pandas_categorical(file_name=model_file)
wxchan's avatar
wxchan committed
807
        elif booster_handle is not None:
Guolin Ke's avatar
Guolin Ke committed
808
            self.__is_manage_handle = False
wxchan's avatar
wxchan committed
809
            self.handle = booster_handle
Guolin Ke's avatar
Guolin Ke committed
810
            out_num_class = ctypes.c_int(0)
wxchan's avatar
wxchan committed
811
812
813
814
            _safe_call(_LIB.LGBM_BoosterGetNumClasses(
                self.handle,
                ctypes.byref(out_num_class)))
            self.num_class = out_num_class.value
815
            self.num_total_iteration = self.current_iteration()
816
            self.pandas_categorical = None
wxchan's avatar
wxchan committed
817
        else:
818
            raise TypeError('Need model_file or booster_handle to create a predictor')
wxchan's avatar
wxchan committed
819

820
        pred_parameter = {} if pred_parameter is None else pred_parameter
821
        self.pred_parameter = _param_dict_to_str(pred_parameter)
cbecker's avatar
cbecker committed
822

823
    def __del__(self) -> None:
824
825
826
827
828
        try:
            if self.__is_manage_handle:
                _safe_call(_LIB.LGBM_BoosterFree(self.handle))
        except AttributeError:
            pass
wxchan's avatar
wxchan committed
829

830
    def __getstate__(self) -> Dict[str, Any]:
831
832
833
834
        this = self.__dict__.copy()
        this.pop('handle', None)
        return this

835
836
    def predict(
        self,
837
        data: _LGBM_PredictDataType,
838
839
840
841
842
843
844
        start_iteration: int = 0,
        num_iteration: int = -1,
        raw_score: bool = False,
        pred_leaf: bool = False,
        pred_contrib: bool = False,
        data_has_header: bool = False,
        validate_features: bool = False
845
    ) -> Union[np.ndarray, scipy.sparse.spmatrix, List[scipy.sparse.spmatrix]]:
846
        """Predict logic.
wxchan's avatar
wxchan committed
847
848
849

        Parameters
        ----------
850
        data : str, pathlib.Path, numpy array, pandas DataFrame, H2O DataTable's Frame or scipy.sparse
851
            Data source for prediction.
852
            If str or pathlib.Path, it represents the path to a text file (CSV, TSV, or LibSVM).
853
854
        start_iteration : int, optional (default=0)
            Start index of the iteration to predict.
855
856
857
858
859
860
861
862
863
864
865
        num_iteration : int, optional (default=-1)
            Iteration used for prediction.
        raw_score : bool, optional (default=False)
            Whether to predict raw scores.
        pred_leaf : bool, optional (default=False)
            Whether to predict leaf index.
        pred_contrib : bool, optional (default=False)
            Whether to predict feature contributions.
        data_has_header : bool, optional (default=False)
            Whether data has header.
            Used only for txt data.
866
867
868
        validate_features : bool, optional (default=False)
            If True, ensure that the features used to predict match the ones used to train.
            Used only if data is pandas DataFrame.
wxchan's avatar
wxchan committed
869
870
871

        Returns
        -------
872
        result : numpy array, scipy.sparse or list of scipy.sparse
873
            Prediction result.
874
            Can be sparse or a list of sparse objects (each element represents predictions for one class) for feature contributions (when ``pred_contrib=True``).
wxchan's avatar
wxchan committed
875
        """
wxchan's avatar
wxchan committed
876
        if isinstance(data, Dataset):
877
            raise TypeError("Cannot use Dataset instance for prediction, please use raw data instead")
878
879
880
881
882
883
884
885
886
887
888
        elif isinstance(data, pd_DataFrame) and validate_features:
            data_names = [str(x) for x in data.columns]
            ptr_names = (ctypes.c_char_p * len(data_names))()
            ptr_names[:] = [x.encode('utf-8') for x in data_names]
            _safe_call(
                _LIB.LGBM_BoosterValidateFeatureNames(
                    self.handle,
                    ptr_names,
                    ctypes.c_int(len(data_names)),
                )
            )
889
        data = _data_from_pandas(data, None, None, self.pandas_categorical)[0]
890
        predict_type = _C_API_PREDICT_NORMAL
wxchan's avatar
wxchan committed
891
        if raw_score:
892
            predict_type = _C_API_PREDICT_RAW_SCORE
wxchan's avatar
wxchan committed
893
        if pred_leaf:
894
            predict_type = _C_API_PREDICT_LEAF_INDEX
895
        if pred_contrib:
896
            predict_type = _C_API_PREDICT_CONTRIB
wxchan's avatar
wxchan committed
897
        int_data_has_header = 1 if data_has_header else 0
cbecker's avatar
cbecker committed
898

899
        if isinstance(data, (str, Path)):
900
            with _TempFile() as f:
wxchan's avatar
wxchan committed
901
902
                _safe_call(_LIB.LGBM_BoosterPredictForFile(
                    self.handle,
903
                    _c_str(str(data)),
Guolin Ke's avatar
Guolin Ke committed
904
905
                    ctypes.c_int(int_data_has_header),
                    ctypes.c_int(predict_type),
906
                    ctypes.c_int(start_iteration),
Guolin Ke's avatar
Guolin Ke committed
907
                    ctypes.c_int(num_iteration),
908
909
                    _c_str(self.pred_parameter),
                    _c_str(f.name)))
910
911
                preds = np.loadtxt(f.name, dtype=np.float64)
                nrow = preds.shape[0]
wxchan's avatar
wxchan committed
912
        elif isinstance(data, scipy.sparse.csr_matrix):
913
914
915
916
917
918
            preds, nrow = self.__pred_for_csr(
                csr=data,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
Guolin Ke's avatar
Guolin Ke committed
919
        elif isinstance(data, scipy.sparse.csc_matrix):
920
921
922
923
924
925
            preds, nrow = self.__pred_for_csc(
                csc=data,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
wxchan's avatar
wxchan committed
926
        elif isinstance(data, np.ndarray):
927
928
929
930
931
932
            preds, nrow = self.__pred_for_np2d(
                mat=data,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
933
934
935
        elif isinstance(data, list):
            try:
                data = np.array(data)
936
            except BaseException:
937
                raise ValueError('Cannot convert data list to numpy array.')
938
939
940
941
942
943
            preds, nrow = self.__pred_for_np2d(
                mat=data,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
944
        elif isinstance(data, dt_DataTable):
945
946
947
948
949
950
            preds, nrow = self.__pred_for_np2d(
                mat=data.to_numpy(),
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
wxchan's avatar
wxchan committed
951
952
        else:
            try:
953
                _log_warning('Converting data to scipy sparse matrix.')
wxchan's avatar
wxchan committed
954
                csr = scipy.sparse.csr_matrix(data)
955
            except BaseException:
956
                raise TypeError(f'Cannot predict data for type {type(data).__name__}')
957
958
959
960
961
962
            preds, nrow = self.__pred_for_csr(
                csr=csr,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
wxchan's avatar
wxchan committed
963
964
        if pred_leaf:
            preds = preds.astype(np.int32)
965
        is_sparse = scipy.sparse.issparse(preds) or isinstance(preds, list)
966
        if not is_sparse and preds.size != nrow:
wxchan's avatar
wxchan committed
967
            if preds.size % nrow == 0:
968
                preds = preds.reshape(nrow, -1)
wxchan's avatar
wxchan committed
969
            else:
970
                raise ValueError(f'Length of predict result ({preds.size}) cannot be divide nrow ({nrow})')
wxchan's avatar
wxchan committed
971
972
        return preds

973
974
975
976
977
978
979
    def __get_num_preds(
        self,
        start_iteration: int,
        num_iteration: int,
        nrow: int,
        predict_type: int
    ) -> int:
980
        """Get size of prediction result."""
981
        if nrow > _MAX_INT32:
982
            raise LightGBMError('LightGBM cannot perform prediction for data '
983
                                f'with number of rows greater than MAX_INT32 ({_MAX_INT32}).\n'
984
                                'You can split your data into chunks '
985
                                'and then concatenate predictions for them')
Guolin Ke's avatar
Guolin Ke committed
986
987
988
        n_preds = ctypes.c_int64(0)
        _safe_call(_LIB.LGBM_BoosterCalcNumPredict(
            self.handle,
Guolin Ke's avatar
Guolin Ke committed
989
990
            ctypes.c_int(nrow),
            ctypes.c_int(predict_type),
991
            ctypes.c_int(start_iteration),
Guolin Ke's avatar
Guolin Ke committed
992
            ctypes.c_int(num_iteration),
Guolin Ke's avatar
Guolin Ke committed
993
994
            ctypes.byref(n_preds)))
        return n_preds.value
wxchan's avatar
wxchan committed
995

996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
    def __inner_predict_np2d(
        self,
        mat: np.ndarray,
        start_iteration: int,
        num_iteration: int,
        predict_type: int,
        preds: Optional[np.ndarray]
    ) -> Tuple[np.ndarray, int]:
        if mat.dtype == np.float32 or mat.dtype == np.float64:
            data = np.array(mat.reshape(mat.size), dtype=mat.dtype, copy=False)
        else:  # change non-float data to float data, need to copy
            data = np.array(mat.reshape(mat.size), dtype=np.float32)
        ptr_data, type_ptr_data, _ = _c_float_array(data)
1009
1010
1011
1012
1013
1014
        n_preds = self.__get_num_preds(
            start_iteration=start_iteration,
            num_iteration=num_iteration,
            nrow=mat.shape[0],
            predict_type=predict_type
        )
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
        if preds is None:
            preds = np.empty(n_preds, dtype=np.float64)
        elif len(preds.shape) != 1 or len(preds) != n_preds:
            raise ValueError("Wrong length of pre-allocated predict array")
        out_num_preds = ctypes.c_int64(0)
        _safe_call(_LIB.LGBM_BoosterPredictForMat(
            self.handle,
            ptr_data,
            ctypes.c_int(type_ptr_data),
            ctypes.c_int32(mat.shape[0]),
            ctypes.c_int32(mat.shape[1]),
            ctypes.c_int(_C_API_IS_ROW_MAJOR),
            ctypes.c_int(predict_type),
            ctypes.c_int(start_iteration),
            ctypes.c_int(num_iteration),
            _c_str(self.pred_parameter),
            ctypes.byref(out_num_preds),
            preds.ctypes.data_as(ctypes.POINTER(ctypes.c_double))))
        if n_preds != out_num_preds.value:
            raise ValueError("Wrong length for predict results")
        return preds, mat.shape[0]

    def __pred_for_np2d(
        self,
        mat: np.ndarray,
        start_iteration: int,
        num_iteration: int,
        predict_type: int
    ) -> Tuple[np.ndarray, int]:
1044
        """Predict for a 2-D numpy matrix."""
wxchan's avatar
wxchan committed
1045
        if len(mat.shape) != 2:
1046
            raise ValueError('Input numpy.ndarray or list must be 2 dimensional')
wxchan's avatar
wxchan committed
1047

1048
        nrow = mat.shape[0]
1049
1050
        if nrow > _MAX_INT32:
            sections = np.arange(start=_MAX_INT32, stop=nrow, step=_MAX_INT32)
1051
            # __get_num_preds() cannot work with nrow > MAX_INT32, so calculate overall number of predictions piecemeal
1052
            n_preds = [self.__get_num_preds(start_iteration, num_iteration, i, predict_type) for i in np.diff([0] + list(sections) + [nrow])]
1053
            n_preds_sections = np.array([0] + n_preds, dtype=np.intp).cumsum()
1054
            preds = np.empty(sum(n_preds), dtype=np.float64)
1055
1056
            for chunk, (start_idx_pred, end_idx_pred) in zip(np.array_split(mat, sections),
                                                             zip(n_preds_sections, n_preds_sections[1:])):
1057
                # avoid memory consumption by arrays concatenation operations
1058
1059
1060
1061
1062
1063
1064
                self.__inner_predict_np2d(
                    mat=chunk,
                    start_iteration=start_iteration,
                    num_iteration=num_iteration,
                    predict_type=predict_type,
                    preds=preds[start_idx_pred:end_idx_pred]
                )
1065
            return preds, nrow
wxchan's avatar
wxchan committed
1066
        else:
1067
1068
1069
1070
1071
1072
1073
            return self.__inner_predict_np2d(
                mat=mat,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type,
                preds=None
            )
wxchan's avatar
wxchan committed
1074

1075
1076
1077
    def __create_sparse_native(
        self,
        cs: Union[scipy.sparse.csc_matrix, scipy.sparse.csr_matrix],
1078
1079
1080
1081
1082
1083
        out_shape: np.ndarray,
        out_ptr_indptr: "ctypes._Pointer",
        out_ptr_indices: "ctypes._Pointer",
        out_ptr_data: "ctypes._Pointer",
        indptr_type: int,
        data_type: int,
1084
        is_csr: bool
1085
    ) -> Union[List[scipy.sparse.csc_matrix], List[scipy.sparse.csr_matrix]]:
1086
1087
1088
        # create numpy array from output arrays
        data_indices_len = out_shape[0]
        indptr_len = out_shape[1]
1089
        if indptr_type == _C_API_DTYPE_INT32:
1090
            out_indptr = _cint32_array_to_numpy(out_ptr_indptr, indptr_len)
1091
        elif indptr_type == _C_API_DTYPE_INT64:
1092
            out_indptr = _cint64_array_to_numpy(out_ptr_indptr, indptr_len)
1093
1094
        else:
            raise TypeError("Expected int32 or int64 type for indptr")
1095
        if data_type == _C_API_DTYPE_FLOAT32:
1096
            out_data = _cfloat32_array_to_numpy(out_ptr_data, data_indices_len)
1097
        elif data_type == _C_API_DTYPE_FLOAT64:
1098
            out_data = _cfloat64_array_to_numpy(out_ptr_data, data_indices_len)
1099
1100
        else:
            raise TypeError("Expected float32 or float64 type for data")
1101
        out_indices = _cint32_array_to_numpy(out_ptr_indices, data_indices_len)
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
        # break up indptr based on number of rows (note more than one matrix in multiclass case)
        per_class_indptr_shape = cs.indptr.shape[0]
        # for CSC there is extra column added
        if not is_csr:
            per_class_indptr_shape += 1
        out_indptr_arrays = np.split(out_indptr, out_indptr.shape[0] / per_class_indptr_shape)
        # reformat output into a csr or csc matrix or list of csr or csc matrices
        cs_output_matrices = []
        offset = 0
        for cs_indptr in out_indptr_arrays:
            matrix_indptr_len = cs_indptr[cs_indptr.shape[0] - 1]
            cs_indices = out_indices[offset + cs_indptr[0]:offset + matrix_indptr_len]
            cs_data = out_data[offset + cs_indptr[0]:offset + matrix_indptr_len]
            offset += matrix_indptr_len
            # same shape as input csr or csc matrix except extra column for expected value
            cs_shape = [cs.shape[0], cs.shape[1] + 1]
            # note: make sure we copy data as it will be deallocated next
            if is_csr:
                cs_output_matrices.append(scipy.sparse.csr_matrix((cs_data, cs_indices, cs_indptr), cs_shape))
            else:
                cs_output_matrices.append(scipy.sparse.csc_matrix((cs_data, cs_indices, cs_indptr), cs_shape))
        # free the temporary native indptr, indices, and data
        _safe_call(_LIB.LGBM_BoosterFreePredictSparse(out_ptr_indptr, out_ptr_indices, out_ptr_data,
                                                      ctypes.c_int(indptr_type), ctypes.c_int(data_type)))
        if len(cs_output_matrices) == 1:
            return cs_output_matrices[0]
        return cs_output_matrices

1130
1131
1132
1133
1134
1135
1136
1137
1138
    def __inner_predict_csr(
        self,
        csr: scipy.sparse.csr_matrix,
        start_iteration: int,
        num_iteration: int,
        predict_type: int,
        preds: Optional[np.ndarray]
    ) -> Tuple[np.ndarray, int]:
        nrow = len(csr.indptr) - 1
1139
1140
1141
1142
1143
1144
        n_preds = self.__get_num_preds(
            start_iteration=start_iteration,
            num_iteration=num_iteration,
            nrow=nrow,
            predict_type=predict_type
        )
1145
1146
1147
1148
1149
        if preds is None:
            preds = np.empty(n_preds, dtype=np.float64)
        elif len(preds.shape) != 1 or len(preds) != n_preds:
            raise ValueError("Wrong length of pre-allocated predict array")
        out_num_preds = ctypes.c_int64(0)
wxchan's avatar
wxchan committed
1150

1151
1152
        ptr_indptr, type_ptr_indptr, _ = _c_int_array(csr.indptr)
        ptr_data, type_ptr_data, _ = _c_float_array(csr.data)
1153

1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
        assert csr.shape[1] <= _MAX_INT32
        csr_indices = csr.indices.astype(np.int32, copy=False)

        _safe_call(_LIB.LGBM_BoosterPredictForCSR(
            self.handle,
            ptr_indptr,
            ctypes.c_int(type_ptr_indptr),
            csr_indices.ctypes.data_as(ctypes.POINTER(ctypes.c_int32)),
            ptr_data,
            ctypes.c_int(type_ptr_data),
            ctypes.c_int64(len(csr.indptr)),
            ctypes.c_int64(len(csr.data)),
            ctypes.c_int64(csr.shape[1]),
            ctypes.c_int(predict_type),
            ctypes.c_int(start_iteration),
            ctypes.c_int(num_iteration),
            _c_str(self.pred_parameter),
            ctypes.byref(out_num_preds),
            preds.ctypes.data_as(ctypes.POINTER(ctypes.c_double))))
        if n_preds != out_num_preds.value:
            raise ValueError("Wrong length for predict results")
        return preds, nrow

    def __inner_predict_csr_sparse(
        self,
        csr: scipy.sparse.csr_matrix,
        start_iteration: int,
        num_iteration: int,
        predict_type: int
1183
    ) -> Tuple[Union[List[scipy.sparse.csc_matrix], List[scipy.sparse.csr_matrix]], int]:
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
        ptr_indptr, type_ptr_indptr, __ = _c_int_array(csr.indptr)
        ptr_data, type_ptr_data, _ = _c_float_array(csr.data)
        csr_indices = csr.indices.astype(np.int32, copy=False)
        matrix_type = _C_API_MATRIX_TYPE_CSR
        if type_ptr_indptr == _C_API_DTYPE_INT32:
            out_ptr_indptr = ctypes.POINTER(ctypes.c_int32)()
        else:
            out_ptr_indptr = ctypes.POINTER(ctypes.c_int64)()
        out_ptr_indices = ctypes.POINTER(ctypes.c_int32)()
        if type_ptr_data == _C_API_DTYPE_FLOAT32:
            out_ptr_data = ctypes.POINTER(ctypes.c_float)()
        else:
            out_ptr_data = ctypes.POINTER(ctypes.c_double)()
        out_shape = np.empty(2, dtype=np.int64)
        _safe_call(_LIB.LGBM_BoosterPredictSparseOutput(
            self.handle,
            ptr_indptr,
            ctypes.c_int(type_ptr_indptr),
            csr_indices.ctypes.data_as(ctypes.POINTER(ctypes.c_int32)),
            ptr_data,
            ctypes.c_int(type_ptr_data),
            ctypes.c_int64(len(csr.indptr)),
            ctypes.c_int64(len(csr.data)),
            ctypes.c_int64(csr.shape[1]),
            ctypes.c_int(predict_type),
            ctypes.c_int(start_iteration),
            ctypes.c_int(num_iteration),
            _c_str(self.pred_parameter),
            ctypes.c_int(matrix_type),
            out_shape.ctypes.data_as(ctypes.POINTER(ctypes.c_int64)),
            ctypes.byref(out_ptr_indptr),
            ctypes.byref(out_ptr_indices),
            ctypes.byref(out_ptr_data)))
        matrices = self.__create_sparse_native(
            cs=csr,
            out_shape=out_shape,
            out_ptr_indptr=out_ptr_indptr,
            out_ptr_indices=out_ptr_indices,
            out_ptr_data=out_ptr_data,
            indptr_type=type_ptr_indptr,
            data_type=type_ptr_data,
            is_csr=True
        )
        nrow = len(csr.indptr) - 1
        return matrices, nrow

1230
1231
1232
1233
1234
1235
1236
    def __pred_for_csr(
        self,
        csr: scipy.sparse.csr_matrix,
        start_iteration: int,
        num_iteration: int,
        predict_type: int
    ) -> Tuple[np.ndarray, int]:
1237
        """Predict for a CSR data."""
1238
        if predict_type == _C_API_PREDICT_CONTRIB:
1239
1240
1241
1242
1243
1244
            return self.__inner_predict_csr_sparse(
                csr=csr,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
1245
        nrow = len(csr.indptr) - 1
1246
1247
        if nrow > _MAX_INT32:
            sections = [0] + list(np.arange(start=_MAX_INT32, stop=nrow, step=_MAX_INT32)) + [nrow]
1248
            # __get_num_preds() cannot work with nrow > MAX_INT32, so calculate overall number of predictions piecemeal
1249
            n_preds = [self.__get_num_preds(start_iteration, num_iteration, i, predict_type) for i in np.diff(sections)]
1250
            n_preds_sections = np.array([0] + n_preds, dtype=np.intp).cumsum()
1251
            preds = np.empty(sum(n_preds), dtype=np.float64)
1252
1253
            for (start_idx, end_idx), (start_idx_pred, end_idx_pred) in zip(zip(sections, sections[1:]),
                                                                            zip(n_preds_sections, n_preds_sections[1:])):
1254
                # avoid memory consumption by arrays concatenation operations
1255
1256
1257
1258
1259
1260
1261
                self.__inner_predict_csr(
                    csr=csr[start_idx:end_idx],
                    start_iteration=start_iteration,
                    num_iteration=num_iteration,
                    predict_type=predict_type,
                    preds=preds[start_idx_pred:end_idx_pred]
                )
1262
1263
            return preds, nrow
        else:
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
            return self.__inner_predict_csr(
                csr=csr,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type,
                preds=None
            )

    def __inner_predict_sparse_csc(
        self,
1274
1275
1276
1277
        csc: scipy.sparse.csc_matrix,
        start_iteration: int,
        num_iteration: int,
        predict_type: int
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
    ):
        ptr_indptr, type_ptr_indptr, __ = _c_int_array(csc.indptr)
        ptr_data, type_ptr_data, _ = _c_float_array(csc.data)
        csc_indices = csc.indices.astype(np.int32, copy=False)
        matrix_type = _C_API_MATRIX_TYPE_CSC
        if type_ptr_indptr == _C_API_DTYPE_INT32:
            out_ptr_indptr = ctypes.POINTER(ctypes.c_int32)()
        else:
            out_ptr_indptr = ctypes.POINTER(ctypes.c_int64)()
        out_ptr_indices = ctypes.POINTER(ctypes.c_int32)()
        if type_ptr_data == _C_API_DTYPE_FLOAT32:
            out_ptr_data = ctypes.POINTER(ctypes.c_float)()
        else:
            out_ptr_data = ctypes.POINTER(ctypes.c_double)()
        out_shape = np.empty(2, dtype=np.int64)
        _safe_call(_LIB.LGBM_BoosterPredictSparseOutput(
            self.handle,
            ptr_indptr,
            ctypes.c_int(type_ptr_indptr),
            csc_indices.ctypes.data_as(ctypes.POINTER(ctypes.c_int32)),
            ptr_data,
            ctypes.c_int(type_ptr_data),
            ctypes.c_int64(len(csc.indptr)),
            ctypes.c_int64(len(csc.data)),
            ctypes.c_int64(csc.shape[0]),
            ctypes.c_int(predict_type),
            ctypes.c_int(start_iteration),
            ctypes.c_int(num_iteration),
            _c_str(self.pred_parameter),
            ctypes.c_int(matrix_type),
            out_shape.ctypes.data_as(ctypes.POINTER(ctypes.c_int64)),
            ctypes.byref(out_ptr_indptr),
            ctypes.byref(out_ptr_indices),
            ctypes.byref(out_ptr_data)))
        matrices = self.__create_sparse_native(
            cs=csc,
            out_shape=out_shape,
            out_ptr_indptr=out_ptr_indptr,
            out_ptr_indices=out_ptr_indices,
            out_ptr_data=out_ptr_data,
            indptr_type=type_ptr_indptr,
            data_type=type_ptr_data,
            is_csr=False
        )
        nrow = csc.shape[0]
        return matrices, nrow
Guolin Ke's avatar
Guolin Ke committed
1324

1325
1326
1327
1328
1329
1330
1331
    def __pred_for_csc(
        self,
        csc: scipy.sparse.csc_matrix,
        start_iteration: int,
        num_iteration: int,
        predict_type: int
    ) -> Tuple[np.ndarray, int]:
1332
        """Predict for a CSC data."""
Guolin Ke's avatar
Guolin Ke committed
1333
        nrow = csc.shape[0]
1334
        if nrow > _MAX_INT32:
1335
1336
1337
1338
1339
1340
            return self.__pred_for_csr(
                csr=csc.tocsr(),
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
1341
        if predict_type == _C_API_PREDICT_CONTRIB:
1342
1343
1344
1345
1346
1347
            return self.__inner_predict_sparse_csc(
                csc=csc,
                start_iteration=start_iteration,
                num_iteration=num_iteration,
                predict_type=predict_type
            )
1348
1349
1350
1351
1352
1353
        n_preds = self.__get_num_preds(
            start_iteration=start_iteration,
            num_iteration=num_iteration,
            nrow=nrow,
            predict_type=predict_type
        )
1354
        preds = np.empty(n_preds, dtype=np.float64)
Guolin Ke's avatar
Guolin Ke committed
1355
1356
        out_num_preds = ctypes.c_int64(0)

1357
1358
        ptr_indptr, type_ptr_indptr, __ = _c_int_array(csc.indptr)
        ptr_data, type_ptr_data, _ = _c_float_array(csc.data)
Guolin Ke's avatar
Guolin Ke committed
1359

1360
        assert csc.shape[0] <= _MAX_INT32
1361
        csc_indices = csc.indices.astype(np.int32, copy=False)
1362

Guolin Ke's avatar
Guolin Ke committed
1363
1364
1365
        _safe_call(_LIB.LGBM_BoosterPredictForCSC(
            self.handle,
            ptr_indptr,
1366
            ctypes.c_int(type_ptr_indptr),
1367
            csc_indices.ctypes.data_as(ctypes.POINTER(ctypes.c_int32)),
Guolin Ke's avatar
Guolin Ke committed
1368
            ptr_data,
Guolin Ke's avatar
Guolin Ke committed
1369
1370
1371
1372
1373
            ctypes.c_int(type_ptr_data),
            ctypes.c_int64(len(csc.indptr)),
            ctypes.c_int64(len(csc.data)),
            ctypes.c_int64(csc.shape[0]),
            ctypes.c_int(predict_type),
1374
            ctypes.c_int(start_iteration),
Guolin Ke's avatar
Guolin Ke committed
1375
            ctypes.c_int(num_iteration),
1376
            _c_str(self.pred_parameter),
Guolin Ke's avatar
Guolin Ke committed
1377
            ctypes.byref(out_num_preds),
wxchan's avatar
wxchan committed
1378
            preds.ctypes.data_as(ctypes.POINTER(ctypes.c_double))))
wxchan's avatar
wxchan committed
1379
        if n_preds != out_num_preds.value:
1380
            raise ValueError("Wrong length for predict results")
wxchan's avatar
wxchan committed
1381
1382
        return preds, nrow

1383
    def current_iteration(self) -> int:
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
        """Get the index of the current iteration.

        Returns
        -------
        cur_iter : int
            The index of the current iteration.
        """
        out_cur_iter = ctypes.c_int(0)
        _safe_call(_LIB.LGBM_BoosterGetCurrentIteration(
            self.handle,
            ctypes.byref(out_cur_iter)))
        return out_cur_iter.value

wxchan's avatar
wxchan committed
1397

1398
class Dataset:
wxchan's avatar
wxchan committed
1399
    """Dataset in LightGBM."""
1400

1401
1402
1403
    def __init__(
        self,
        data,
1404
        label: Optional[_LGBM_LabelType] = None,
1405
1406
1407
1408
        reference: Optional["Dataset"] = None,
        weight=None,
        group=None,
        init_score=None,
1409
1410
        feature_name: _LGBM_FeatureNameConfiguration = 'auto',
        categorical_feature: _LGBM_CategoricalFeatureConfiguration = 'auto',
1411
1412
1413
        params: Optional[Dict[str, Any]] = None,
        free_raw_data: bool = True
    ):
1414
        """Initialize Dataset.
1415

wxchan's avatar
wxchan committed
1416
1417
        Parameters
        ----------
1418
        data : str, pathlib.Path, numpy array, pandas DataFrame, H2O DataTable's Frame, scipy.sparse, Sequence, list of Sequence or list of numpy array
wxchan's avatar
wxchan committed
1419
            Data source of Dataset.
1420
            If str or pathlib.Path, it represents the path to a text file (CSV, TSV, or LibSVM) or a LightGBM Dataset binary file.
1421
        label : list, numpy 1-D array, pandas Series / one-column DataFrame or None, optional (default=None)
1422
1423
1424
            Label of the data.
        reference : Dataset or None, optional (default=None)
            If this is Dataset for validation, training data should be used as reference.
1425
        weight : list, numpy 1-D array, pandas Series or None, optional (default=None)
1426
            Weight for each instance. Weights should be non-negative.
1427
        group : list, numpy 1-D array, pandas Series or None, optional (default=None)
1428
1429
1430
            Group/query data.
            Only used in the learning-to-rank task.
            sum(group) = n_samples.
1431
1432
            For example, if you have a 100-document dataset with ``group = [10, 20, 40, 10, 10, 10]``, that means that you have 6 groups,
            where the first 10 records are in the first group, records 11-30 are in the second group, records 31-70 are in the third group, etc.
1433
        init_score : list, list of lists (for multi-class task), numpy array, pandas Series, pandas DataFrame (for multi-class task), or None, optional (default=None)
1434
            Init score for Dataset.
1435
        feature_name : list of str, or 'auto', optional (default="auto")
1436
1437
            Feature names.
            If 'auto' and data is pandas DataFrame, data columns names are used.
1438
        categorical_feature : list of str or int, or 'auto', optional (default="auto")
1439
1440
            Categorical features.
            If list of int, interpreted as indices.
1441
            If list of str, interpreted as feature names (need to specify ``feature_name`` as well).
1442
            If 'auto' and data is pandas DataFrame, pandas unordered categorical columns are used.
1443
            All values in categorical features will be cast to int32 and thus should be less than int32 max value (2147483647).
1444
            Large values could be memory consuming. Consider using consecutive integers starting from zero.
1445
            All negative values in categorical features will be treated as missing values.
1446
            The output cannot be monotonically constrained with respect to a categorical feature.
1447
            Floating point numbers in categorical features will be rounded towards 0.
Nikita Titov's avatar
Nikita Titov committed
1448
        params : dict or None, optional (default=None)
1449
            Other parameters for Dataset.
Nikita Titov's avatar
Nikita Titov committed
1450
        free_raw_data : bool, optional (default=True)
1451
            If True, raw data is freed after constructing inner Dataset.
wxchan's avatar
wxchan committed
1452
        """
1453
        self.handle: Optional[_DatasetHandle] = None
wxchan's avatar
wxchan committed
1454
1455
1456
1457
1458
        self.data = data
        self.label = label
        self.reference = reference
        self.weight = weight
        self.group = group
1459
        self.init_score = init_score
1460
1461
        self.feature_name: _LGBM_FeatureNameConfiguration = feature_name
        self.categorical_feature: _LGBM_CategoricalFeatureConfiguration = categorical_feature
1462
        self.params = deepcopy(params)
wxchan's avatar
wxchan committed
1463
        self.free_raw_data = free_raw_data
1464
        self.used_indices: Optional[List[int]] = None
1465
        self._need_slice = True
1466
        self._predictor: Optional[_InnerPredictor] = None
1467
        self.pandas_categorical = None
1468
        self._params_back_up = None
1469
        self.version = 0
1470
        self._start_row = 0  # Used when pushing rows one by one.
wxchan's avatar
wxchan committed
1471

1472
    def __del__(self) -> None:
1473
1474
1475
1476
        try:
            self._free_handle()
        except AttributeError:
            pass
1477

1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
    def _create_sample_indices(self, total_nrow: int) -> np.ndarray:
        """Get an array of randomly chosen indices from this ``Dataset``.

        Indices are sampled without replacement.

        Parameters
        ----------
        total_nrow : int
            Total number of rows to sample from.
            If this value is greater than the value of parameter ``bin_construct_sample_cnt``, only ``bin_construct_sample_cnt`` indices will be used.
            If Dataset has multiple input data, this should be the sum of rows of every file.

        Returns
        -------
        indices : numpy array
            Indices for sampled data.
        """
1495
        param_str = _param_dict_to_str(self.get_params())
1496
1497
        sample_cnt = _get_sample_count(total_nrow, param_str)
        indices = np.empty(sample_cnt, dtype=np.int32)
1498
        ptr_data, _, _ = _c_int_array(indices)
1499
1500
1501
1502
        actual_sample_cnt = ctypes.c_int32(0)

        _safe_call(_LIB.LGBM_SampleIndices(
            ctypes.c_int32(total_nrow),
1503
            _c_str(param_str),
1504
1505
1506
            ptr_data,
            ctypes.byref(actual_sample_cnt),
        ))
1507
1508
        assert sample_cnt == actual_sample_cnt.value
        return indices
1509

1510
1511
1512
1513
1514
    def _init_from_ref_dataset(
        self,
        total_nrow: int,
        ref_dataset: _DatasetHandle
    ) -> 'Dataset':
1515
1516
1517
1518
1519
1520
        """Create dataset from a reference dataset.

        Parameters
        ----------
        total_nrow : int
            Number of rows expected to add to dataset.
1521
1522
        ref_dataset : object
            Handle of reference dataset to extract metadata from.
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547

        Returns
        -------
        self : Dataset
            Constructed Dataset object.
        """
        self.handle = ctypes.c_void_p()
        _safe_call(_LIB.LGBM_DatasetCreateByReference(
            ref_dataset,
            ctypes.c_int64(total_nrow),
            ctypes.byref(self.handle),
        ))
        return self

    def _init_from_sample(
        self,
        sample_data: List[np.ndarray],
        sample_indices: List[np.ndarray],
        sample_cnt: int,
        total_nrow: int,
    ) -> "Dataset":
        """Create Dataset from sampled data structures.

        Parameters
        ----------
1548
        sample_data : list of numpy array
1549
            Sample data for each column.
1550
        sample_indices : list of numpy array
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
            Sample data row index for each column.
        sample_cnt : int
            Number of samples.
        total_nrow : int
            Total number of rows for all input files.

        Returns
        -------
        self : Dataset
            Constructed Dataset object.
        """
        ncol = len(sample_indices)
        assert len(sample_data) == ncol, "#sample data column != #column indices"

        for i in range(ncol):
            if sample_data[i].dtype != np.double:
                raise ValueError(f"sample_data[{i}] type {sample_data[i].dtype} is not double")
            if sample_indices[i].dtype != np.int32:
                raise ValueError(f"sample_indices[{i}] type {sample_indices[i].dtype} is not int32")

        # c type: double**
        # each double* element points to start of each column of sample data.
        sample_col_ptr = (ctypes.POINTER(ctypes.c_double) * ncol)()
        # c type int**
        # each int* points to start of indices for each column
        indices_col_ptr = (ctypes.POINTER(ctypes.c_int32) * ncol)()
        for i in range(ncol):
1578
1579
            sample_col_ptr[i] = _c_float_array(sample_data[i])[0]
            indices_col_ptr[i] = _c_int_array(sample_indices[i])[0]
1580
1581

        num_per_col = np.array([len(d) for d in sample_indices], dtype=np.int32)
1582
        num_per_col_ptr, _, _ = _c_int_array(num_per_col)
1583
1584

        self.handle = ctypes.c_void_p()
1585
        params_str = _param_dict_to_str(self.get_params())
1586
1587
1588
1589
1590
1591
1592
        _safe_call(_LIB.LGBM_DatasetCreateFromSampledColumn(
            ctypes.cast(sample_col_ptr, ctypes.POINTER(ctypes.POINTER(ctypes.c_double))),
            ctypes.cast(indices_col_ptr, ctypes.POINTER(ctypes.POINTER(ctypes.c_int32))),
            ctypes.c_int32(ncol),
            num_per_col_ptr,
            ctypes.c_int32(sample_cnt),
            ctypes.c_int32(total_nrow),
1593
            ctypes.c_int64(total_nrow),
1594
            _c_str(params_str),
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
            ctypes.byref(self.handle),
        ))
        return self

    def _push_rows(self, data: np.ndarray) -> 'Dataset':
        """Add rows to Dataset.

        Parameters
        ----------
        data : numpy 1-D array
            New data to add to the Dataset.

        Returns
        -------
        self : Dataset
            Dataset object.
        """
        nrow, ncol = data.shape
        data = data.reshape(data.size)
1614
        data_ptr, data_type, _ = _c_float_array(data)
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626

        _safe_call(_LIB.LGBM_DatasetPushRows(
            self.handle,
            data_ptr,
            data_type,
            ctypes.c_int32(nrow),
            ctypes.c_int32(ncol),
            ctypes.c_int32(self._start_row),
        ))
        self._start_row += nrow
        return self

1627
    def get_params(self) -> Dict[str, Any]:
1628
1629
1630
1631
        """Get the used parameters in the Dataset.

        Returns
        -------
1632
        params : dict
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
            The used parameters in this Dataset object.
        """
        if self.params is not None:
            # no min_data, nthreads and verbose in this function
            dataset_params = _ConfigAliases.get("bin_construct_sample_cnt",
                                                "categorical_feature",
                                                "data_random_seed",
                                                "enable_bundle",
                                                "feature_pre_filter",
                                                "forcedbins_filename",
                                                "group_column",
                                                "header",
                                                "ignore_column",
                                                "is_enable_sparse",
                                                "label_column",
1648
                                                "linear_tree",
1649
1650
1651
1652
                                                "max_bin",
                                                "max_bin_by_feature",
                                                "min_data_in_bin",
                                                "pre_partition",
Nikita Titov's avatar
Nikita Titov committed
1653
                                                "precise_float_parser",
1654
1655
1656
1657
1658
                                                "two_round",
                                                "use_missing",
                                                "weight_column",
                                                "zero_as_missing")
            return {k: v for k, v in self.params.items() if k in dataset_params}
1659
1660
        else:
            return {}
1661

1662
    def _free_handle(self) -> "Dataset":
1663
        if self.handle is not None:
1664
            _safe_call(_LIB.LGBM_DatasetFree(self.handle))
1665
            self.handle = None
1666
        self._need_slice = True
Guolin Ke's avatar
Guolin Ke committed
1667
1668
        if self.used_indices is not None:
            self.data = None
Nikita Titov's avatar
Nikita Titov committed
1669
        return self
wxchan's avatar
wxchan committed
1670

1671
1672
1673
1674
1675
1676
    def _set_init_score_by_predictor(
        self,
        predictor: Optional[_InnerPredictor],
        data,
        used_indices: Optional[List[int]]
    ):
Guolin Ke's avatar
Guolin Ke committed
1677
        data_has_header = False
1678
        if isinstance(data, (str, Path)):
Guolin Ke's avatar
Guolin Ke committed
1679
            # check data has header or not
1680
            data_has_header = any(self.params.get(alias, False) for alias in _ConfigAliases.get("header"))
Guolin Ke's avatar
Guolin Ke committed
1681
        num_data = self.num_data()
1682
1683
1684
        if predictor is not None:
            init_score = predictor.predict(data,
                                           raw_score=True,
1685
1686
                                           data_has_header=data_has_header)
            init_score = init_score.ravel()
1687
            if used_indices is not None:
1688
                assert not self._need_slice
1689
                if isinstance(data, (str, Path)):
1690
                    sub_init_score = np.empty(num_data * predictor.num_class, dtype=np.float64)
1691
                    assert num_data == len(used_indices)
1692
1693
                    for i in range(len(used_indices)):
                        for j in range(predictor.num_class):
1694
1695
1696
1697
                            sub_init_score[i * predictor.num_class + j] = init_score[used_indices[i] * predictor.num_class + j]
                    init_score = sub_init_score
            if predictor.num_class > 1:
                # need to regroup init_score
1698
                new_init_score = np.empty(init_score.size, dtype=np.float64)
1699
1700
                for i in range(num_data):
                    for j in range(predictor.num_class):
1701
1702
1703
                        new_init_score[j * num_data + i] = init_score[i * predictor.num_class + j]
                init_score = new_init_score
        elif self.init_score is not None:
1704
            init_score = np.zeros(self.init_score.shape, dtype=np.float64)
1705
1706
        else:
            return self
Guolin Ke's avatar
Guolin Ke committed
1707
1708
        self.set_init_score(init_score)

1709
1710
1711
    def _lazy_init(
        self,
        data,
1712
        label: Optional[_LGBM_LabelType] = None,
1713
1714
1715
1716
1717
1718
1719
1720
1721
        reference: Optional["Dataset"] = None,
        weight=None,
        group=None,
        init_score=None,
        predictor=None,
        feature_name='auto',
        categorical_feature='auto',
        params: Optional[Dict[str, Any]] = None
    ) -> "Dataset":
wxchan's avatar
wxchan committed
1722
1723
        if data is None:
            self.handle = None
Nikita Titov's avatar
Nikita Titov committed
1724
            return self
Guolin Ke's avatar
Guolin Ke committed
1725
1726
1727
        if reference is not None:
            self.pandas_categorical = reference.pandas_categorical
            categorical_feature = reference.categorical_feature
1728
1729
1730
1731
        data, feature_name, categorical_feature, self.pandas_categorical = _data_from_pandas(data,
                                                                                             feature_name,
                                                                                             categorical_feature,
                                                                                             self.pandas_categorical)
Guolin Ke's avatar
Guolin Ke committed
1732

1733
        # process for args
wxchan's avatar
wxchan committed
1734
        params = {} if params is None else params
1735
1736
1737
        args_names = (getattr(self.__class__, '_lazy_init')
                      .__code__
                      .co_varnames[:getattr(self.__class__, '_lazy_init').__code__.co_argcount])
1738
        for key in params.keys():
1739
            if key in args_names:
1740
1741
                _log_warning(f'{key} keyword has been found in `params` and will be ignored.\n'
                             f'Please use {key} argument of the Dataset constructor to pass this parameter.')
1742
        # get categorical features
1743
1744
1745
1746
1747
1748
        if categorical_feature is not None:
            categorical_indices = set()
            feature_dict = {}
            if feature_name is not None:
                feature_dict = {name: i for i, name in enumerate(feature_name)}
            for name in categorical_feature:
1749
                if isinstance(name, str) and name in feature_dict:
1750
                    categorical_indices.add(feature_dict[name])
1751
                elif isinstance(name, int):
1752
1753
                    categorical_indices.add(name)
                else:
1754
                    raise TypeError(f"Wrong type({type(name).__name__}) or unknown name({name}) in categorical_feature")
1755
            if categorical_indices:
1756
1757
                for cat_alias in _ConfigAliases.get("categorical_feature"):
                    if cat_alias in params:
1758
                        # If the params[cat_alias] is equal to categorical_indices, do not report the warning.
1759
                        if not (isinstance(params[cat_alias], list) and set(params[cat_alias]) == categorical_indices):
1760
                            _log_warning(f'{cat_alias} in param dict is overridden.')
1761
                        params.pop(cat_alias, None)
1762
                params['categorical_column'] = sorted(categorical_indices)
1763

1764
        params_str = _param_dict_to_str(params)
1765
        self.params = params
1766
        # process for reference dataset
wxchan's avatar
wxchan committed
1767
        ref_dataset = None
wxchan's avatar
wxchan committed
1768
        if isinstance(reference, Dataset):
1769
            ref_dataset = reference.construct().handle
wxchan's avatar
wxchan committed
1770
1771
        elif reference is not None:
            raise TypeError('Reference dataset should be None or dataset instance')
1772
        # start construct data
1773
        if isinstance(data, (str, Path)):
wxchan's avatar
wxchan committed
1774
1775
            self.handle = ctypes.c_void_p()
            _safe_call(_LIB.LGBM_DatasetCreateFromFile(
1776
1777
                _c_str(str(data)),
                _c_str(params_str),
wxchan's avatar
wxchan committed
1778
1779
1780
1781
                ref_dataset,
                ctypes.byref(self.handle)))
        elif isinstance(data, scipy.sparse.csr_matrix):
            self.__init_from_csr(data, params_str, ref_dataset)
Guolin Ke's avatar
Guolin Ke committed
1782
1783
        elif isinstance(data, scipy.sparse.csc_matrix):
            self.__init_from_csc(data, params_str, ref_dataset)
wxchan's avatar
wxchan committed
1784
1785
        elif isinstance(data, np.ndarray):
            self.__init_from_np2d(data, params_str, ref_dataset)
1786
1787
1788
1789
1790
1791
1792
1793
1794
        elif isinstance(data, list) and len(data) > 0:
            if all(isinstance(x, np.ndarray) for x in data):
                self.__init_from_list_np2d(data, params_str, ref_dataset)
            elif all(isinstance(x, Sequence) for x in data):
                self.__init_from_seqs(data, ref_dataset)
            else:
                raise TypeError('Data list can only be of ndarray or Sequence')
        elif isinstance(data, Sequence):
            self.__init_from_seqs([data], ref_dataset)
1795
        elif isinstance(data, dt_DataTable):
1796
            self.__init_from_np2d(data.to_numpy(), params_str, ref_dataset)
wxchan's avatar
wxchan committed
1797
1798
1799
1800
        else:
            try:
                csr = scipy.sparse.csr_matrix(data)
                self.__init_from_csr(csr, params_str, ref_dataset)
1801
            except BaseException:
1802
                raise TypeError(f'Cannot initialize Dataset from {type(data).__name__}')
wxchan's avatar
wxchan committed
1803
1804
1805
        if label is not None:
            self.set_label(label)
        if self.get_label() is None:
1806
            raise ValueError("Label should not be None")
wxchan's avatar
wxchan committed
1807
1808
1809
1810
        if weight is not None:
            self.set_weight(weight)
        if group is not None:
            self.set_group(group)
1811
1812
        if isinstance(predictor, _InnerPredictor):
            if self._predictor is None and init_score is not None:
1813
                _log_warning("The init_score will be overridden by the prediction of init_model.")
1814
1815
1816
1817
1818
            self._set_init_score_by_predictor(
                predictor=predictor,
                data=data,
                used_indices=None
            )
1819
1820
        elif init_score is not None:
            self.set_init_score(init_score)
Guolin Ke's avatar
Guolin Ke committed
1821
        elif predictor is not None:
1822
            raise TypeError(f'Wrong predictor type {type(predictor).__name__}')
Guolin Ke's avatar
Guolin Ke committed
1823
        # set feature names
Nikita Titov's avatar
Nikita Titov committed
1824
        return self.set_feature_name(feature_name)
wxchan's avatar
wxchan committed
1825

1826
1827
    @staticmethod
    def _yield_row_from_seqlist(seqs: List[Sequence], indices: Iterable[int]):
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
        offset = 0
        seq_id = 0
        seq = seqs[seq_id]
        for row_id in indices:
            assert row_id >= offset, "sample indices are expected to be monotonic"
            while row_id >= offset + len(seq):
                offset += len(seq)
                seq_id += 1
                seq = seqs[seq_id]
            id_in_seq = row_id - offset
            row = seq[id_in_seq]
            yield row if row.flags['OWNDATA'] else row.copy()

    def __sample(self, seqs: List[Sequence], total_nrow: int) -> Tuple[List[np.ndarray], List[np.ndarray]]:
        """Sample data from seqs.

        Mimics behavior in c_api.cpp:LGBM_DatasetCreateFromMats()

        Returns
        -------
            sampled_rows, sampled_row_indices
        """
        indices = self._create_sample_indices(total_nrow)

        # Select sampled rows, transpose to column order.
1853
        sampled = np.array([row for row in self._yield_row_from_seqlist(seqs, indices)])
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
        sampled = sampled.T

        filtered = []
        filtered_idx = []
        sampled_row_range = np.arange(len(indices), dtype=np.int32)
        for col in sampled:
            col_predicate = (np.abs(col) > ZERO_THRESHOLD) | np.isnan(col)
            filtered_col = col[col_predicate]
            filtered_row_idx = sampled_row_range[col_predicate]

            filtered.append(filtered_col)
            filtered_idx.append(filtered_row_idx)

        return filtered, filtered_idx

1869
1870
1871
    def __init_from_seqs(
        self,
        seqs: List[Sequence],
1872
        ref_dataset: Optional[_DatasetHandle]
1873
    ) -> "Dataset":
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
        """
        Initialize data from list of Sequence objects.

        Sequence: Generic Data Access Object
            Supports random access and access by batch if properly defined by user

        Data scheme uniformity are trusted, not checked
        """
        total_nrow = sum(len(seq) for seq in seqs)

        # create validation dataset from ref_dataset
        if ref_dataset is not None:
            self._init_from_ref_dataset(total_nrow, ref_dataset)
        else:
1888
            param_str = _param_dict_to_str(self.get_params())
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
            sample_cnt = _get_sample_count(total_nrow, param_str)

            sample_data, col_indices = self.__sample(seqs, total_nrow)
            self._init_from_sample(sample_data, col_indices, sample_cnt, total_nrow)

        for seq in seqs:
            nrow = len(seq)
            batch_size = getattr(seq, 'batch_size', None) or Sequence.batch_size
            for start in range(0, nrow, batch_size):
                end = min(start + batch_size, nrow)
                self._push_rows(seq[start:end])
        return self

1902
1903
1904
1905
1906
1907
    def __init_from_np2d(
        self,
        mat: np.ndarray,
        params_str: str,
        ref_dataset: Optional[_DatasetHandle]
    ) -> "Dataset":
1908
        """Initialize data from a 2-D numpy matrix."""
wxchan's avatar
wxchan committed
1909
1910
1911
1912
1913
1914
        if len(mat.shape) != 2:
            raise ValueError('Input numpy.ndarray must be 2 dimensional')

        self.handle = ctypes.c_void_p()
        if mat.dtype == np.float32 or mat.dtype == np.float64:
            data = np.array(mat.reshape(mat.size), dtype=mat.dtype, copy=False)
1915
        else:  # change non-float data to float data, need to copy
wxchan's avatar
wxchan committed
1916
1917
            data = np.array(mat.reshape(mat.size), dtype=np.float32)

1918
        ptr_data, type_ptr_data, _ = _c_float_array(data)
wxchan's avatar
wxchan committed
1919
1920
        _safe_call(_LIB.LGBM_DatasetCreateFromMat(
            ptr_data,
Guolin Ke's avatar
Guolin Ke committed
1921
            ctypes.c_int(type_ptr_data),
1922
1923
            ctypes.c_int32(mat.shape[0]),
            ctypes.c_int32(mat.shape[1]),
1924
            ctypes.c_int(_C_API_IS_ROW_MAJOR),
1925
            _c_str(params_str),
wxchan's avatar
wxchan committed
1926
1927
            ref_dataset,
            ctypes.byref(self.handle)))
Nikita Titov's avatar
Nikita Titov committed
1928
        return self
wxchan's avatar
wxchan committed
1929

1930
1931
1932
1933
1934
1935
    def __init_from_list_np2d(
        self,
        mats: List[np.ndarray],
        params_str: str,
        ref_dataset: Optional[_DatasetHandle]
    ) -> "Dataset":
1936
        """Initialize data from a list of 2-D numpy matrices."""
1937
        ncol = mats[0].shape[1]
1938
        nrow = np.empty((len(mats),), np.int32)
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
        if mats[0].dtype == np.float64:
            ptr_data = (ctypes.POINTER(ctypes.c_double) * len(mats))()
        else:
            ptr_data = (ctypes.POINTER(ctypes.c_float) * len(mats))()

        holders = []
        type_ptr_data = None

        for i, mat in enumerate(mats):
            if len(mat.shape) != 2:
                raise ValueError('Input numpy.ndarray must be 2 dimensional')

            if mat.shape[1] != ncol:
                raise ValueError('Input arrays must have same number of columns')

            nrow[i] = mat.shape[0]

            if mat.dtype == np.float32 or mat.dtype == np.float64:
                mats[i] = np.array(mat.reshape(mat.size), dtype=mat.dtype, copy=False)
1958
            else:  # change non-float data to float data, need to copy
1959
1960
                mats[i] = np.array(mat.reshape(mat.size), dtype=np.float32)

1961
            chunk_ptr_data, chunk_type_ptr_data, holder = _c_float_array(mats[i])
1962
1963
1964
1965
1966
1967
1968
1969
            if type_ptr_data is not None and chunk_type_ptr_data != type_ptr_data:
                raise ValueError('Input chunks must have same type')
            ptr_data[i] = chunk_ptr_data
            type_ptr_data = chunk_type_ptr_data
            holders.append(holder)

        self.handle = ctypes.c_void_p()
        _safe_call(_LIB.LGBM_DatasetCreateFromMats(
1970
            ctypes.c_int32(len(mats)),
1971
1972
1973
            ctypes.cast(ptr_data, ctypes.POINTER(ctypes.POINTER(ctypes.c_double))),
            ctypes.c_int(type_ptr_data),
            nrow.ctypes.data_as(ctypes.POINTER(ctypes.c_int32)),
1974
            ctypes.c_int32(ncol),
1975
            ctypes.c_int(_C_API_IS_ROW_MAJOR),
1976
            _c_str(params_str),
1977
1978
            ref_dataset,
            ctypes.byref(self.handle)))
Nikita Titov's avatar
Nikita Titov committed
1979
        return self
1980

1981
1982
1983
1984
1985
1986
    def __init_from_csr(
        self,
        csr: scipy.sparse.csr_matrix,
        params_str: str,
        ref_dataset: Optional[_DatasetHandle]
    ) -> "Dataset":
1987
        """Initialize data from a CSR matrix."""
wxchan's avatar
wxchan committed
1988
        if len(csr.indices) != len(csr.data):
1989
            raise ValueError(f'Length mismatch: {len(csr.indices)} vs {len(csr.data)}')
wxchan's avatar
wxchan committed
1990
1991
        self.handle = ctypes.c_void_p()

1992
1993
        ptr_indptr, type_ptr_indptr, __ = _c_int_array(csr.indptr)
        ptr_data, type_ptr_data, _ = _c_float_array(csr.data)
wxchan's avatar
wxchan committed
1994

1995
        assert csr.shape[1] <= _MAX_INT32
1996
        csr_indices = csr.indices.astype(np.int32, copy=False)
1997

wxchan's avatar
wxchan committed
1998
1999
        _safe_call(_LIB.LGBM_DatasetCreateFromCSR(
            ptr_indptr,
Guolin Ke's avatar
Guolin Ke committed
2000
            ctypes.c_int(type_ptr_indptr),
2001
            csr_indices.ctypes.data_as(ctypes.POINTER(ctypes.c_int32)),
wxchan's avatar
wxchan committed
2002
            ptr_data,
Guolin Ke's avatar
Guolin Ke committed
2003
2004
2005
2006
            ctypes.c_int(type_ptr_data),
            ctypes.c_int64(len(csr.indptr)),
            ctypes.c_int64(len(csr.data)),
            ctypes.c_int64(csr.shape[1]),
2007
            _c_str(params_str),
wxchan's avatar
wxchan committed
2008
2009
            ref_dataset,
            ctypes.byref(self.handle)))
Nikita Titov's avatar
Nikita Titov committed
2010
        return self
wxchan's avatar
wxchan committed
2011

2012
2013
2014
2015
2016
2017
    def __init_from_csc(
        self,
        csc: scipy.sparse.csc_matrix,
        params_str: str,
        ref_dataset: Optional[_DatasetHandle]
    ) -> "Dataset":
2018
        """Initialize data from a CSC matrix."""
Guolin Ke's avatar
Guolin Ke committed
2019
        if len(csc.indices) != len(csc.data):
2020
            raise ValueError(f'Length mismatch: {len(csc.indices)} vs {len(csc.data)}')
Guolin Ke's avatar
Guolin Ke committed
2021
2022
        self.handle = ctypes.c_void_p()

2023
2024
        ptr_indptr, type_ptr_indptr, __ = _c_int_array(csc.indptr)
        ptr_data, type_ptr_data, _ = _c_float_array(csc.data)
Guolin Ke's avatar
Guolin Ke committed
2025

2026
        assert csc.shape[0] <= _MAX_INT32
2027
        csc_indices = csc.indices.astype(np.int32, copy=False)
2028

Guolin Ke's avatar
Guolin Ke committed
2029
2030
        _safe_call(_LIB.LGBM_DatasetCreateFromCSC(
            ptr_indptr,
Guolin Ke's avatar
Guolin Ke committed
2031
            ctypes.c_int(type_ptr_indptr),
2032
            csc_indices.ctypes.data_as(ctypes.POINTER(ctypes.c_int32)),
Guolin Ke's avatar
Guolin Ke committed
2033
            ptr_data,
Guolin Ke's avatar
Guolin Ke committed
2034
2035
2036
2037
            ctypes.c_int(type_ptr_data),
            ctypes.c_int64(len(csc.indptr)),
            ctypes.c_int64(len(csc.data)),
            ctypes.c_int64(csc.shape[0]),
2038
            _c_str(params_str),
Guolin Ke's avatar
Guolin Ke committed
2039
2040
            ref_dataset,
            ctypes.byref(self.handle)))
Nikita Titov's avatar
Nikita Titov committed
2041
        return self
Guolin Ke's avatar
Guolin Ke committed
2042

2043
    @staticmethod
2044
2045
2046
2047
2048
2049
    def _compare_params_for_warning(
        params: Optional[Dict[str, Any]],
        other_params: Optional[Dict[str, Any]],
        ignore_keys: Set[str]
    ) -> bool:
        """Compare two dictionaries with params ignoring some keys.
2050

2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
        It is only for the warning purpose.

        Parameters
        ----------
        params : dict or None
            One dictionary with parameters to compare.
        other_params : dict or None
            Another dictionary with parameters to compare.
        ignore_keys : set
            Keys that should be ignored during comparing two dictionaries.
2061
2062
2063

        Returns
        -------
2064
2065
        compare_result : bool
          Returns whether two dictionaries with params are equal.
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
        """
        if params is None:
            params = {}
        if other_params is None:
            other_params = {}
        for k in other_params:
            if k not in ignore_keys:
                if k not in params or params[k] != other_params[k]:
                    return False
        for k in params:
            if k not in ignore_keys:
                if k not in other_params or params[k] != other_params[k]:
                    return False
        return True

2081
    def construct(self) -> "Dataset":
2082
2083
2084
2085
2086
        """Lazy init.

        Returns
        -------
        self : Dataset
Nikita Titov's avatar
Nikita Titov committed
2087
            Constructed Dataset object.
2088
        """
2089
        if self.handle is None:
wxchan's avatar
wxchan committed
2090
            if self.reference is not None:
2091
                reference_params = self.reference.get_params()
2092
2093
                params = self.get_params()
                if params != reference_params:
2094
2095
2096
2097
2098
                    if not self._compare_params_for_warning(
                        params=params,
                        other_params=reference_params,
                        ignore_keys=_ConfigAliases.get("categorical_feature")
                    ):
2099
                        _log_warning('Overriding the parameters from Reference Dataset.')
2100
                    self._update_params(reference_params)
wxchan's avatar
wxchan committed
2101
                if self.used_indices is None:
2102
                    # create valid
2103
                    self._lazy_init(self.data, label=self.label, reference=self.reference,
2104
2105
                                    weight=self.weight, group=self.group,
                                    init_score=self.init_score, predictor=self._predictor,
2106
                                    feature_name=self.feature_name, params=self.params)
wxchan's avatar
wxchan committed
2107
                else:
2108
                    # construct subset
2109
                    used_indices = _list_to_1d_numpy(self.used_indices, np.int32, name='used_indices')
2110
                    assert used_indices.flags.c_contiguous
Guolin Ke's avatar
Guolin Ke committed
2111
                    if self.reference.group is not None:
2112
                        group_info = np.array(self.reference.group).astype(np.int32, copy=False)
2113
                        _, self.group = np.unique(np.repeat(range(len(group_info)), repeats=group_info)[self.used_indices],
2114
                                                  return_counts=True)
2115
                    self.handle = ctypes.c_void_p()
2116
                    params_str = _param_dict_to_str(self.params)
wxchan's avatar
wxchan committed
2117
                    _safe_call(_LIB.LGBM_DatasetGetSubset(
2118
                        self.reference.construct().handle,
wxchan's avatar
wxchan committed
2119
                        used_indices.ctypes.data_as(ctypes.POINTER(ctypes.c_int32)),
2120
                        ctypes.c_int32(used_indices.shape[0]),
2121
                        _c_str(params_str),
wxchan's avatar
wxchan committed
2122
                        ctypes.byref(self.handle)))
Guolin Ke's avatar
Guolin Ke committed
2123
2124
                    if not self.free_raw_data:
                        self.get_data()
Guolin Ke's avatar
Guolin Ke committed
2125
2126
                    if self.group is not None:
                        self.set_group(self.group)
wxchan's avatar
wxchan committed
2127
2128
                    if self.get_label() is None:
                        raise ValueError("Label should not be None.")
Guolin Ke's avatar
Guolin Ke committed
2129
2130
                    if isinstance(self._predictor, _InnerPredictor) and self._predictor is not self.reference._predictor:
                        self.get_data()
2131
2132
2133
2134
2135
                        self._set_init_score_by_predictor(
                            predictor=self._predictor,
                            data=self.data,
                            used_indices=used_indices
                        )
wxchan's avatar
wxchan committed
2136
            else:
2137
                # create train
2138
                self._lazy_init(self.data, label=self.label,
2139
2140
                                weight=self.weight, group=self.group,
                                init_score=self.init_score, predictor=self._predictor,
2141
                                feature_name=self.feature_name, categorical_feature=self.categorical_feature, params=self.params)
wxchan's avatar
wxchan committed
2142
2143
            if self.free_raw_data:
                self.data = None
2144
            self.feature_name = self.get_feature_name()
wxchan's avatar
wxchan committed
2145
        return self
wxchan's avatar
wxchan committed
2146

2147
2148
2149
    def create_valid(
        self,
        data,
2150
        label: Optional[_LGBM_LabelType] = None,
2151
2152
2153
2154
2155
        weight=None,
        group=None,
        init_score=None,
        params: Optional[Dict[str, Any]] = None
    ) -> "Dataset":
2156
        """Create validation data align with current Dataset.
wxchan's avatar
wxchan committed
2157
2158
2159

        Parameters
        ----------
2160
        data : str, pathlib.Path, numpy array, pandas DataFrame, H2O DataTable's Frame, scipy.sparse, Sequence, list of Sequence or list of numpy array
wxchan's avatar
wxchan committed
2161
            Data source of Dataset.
2162
            If str or pathlib.Path, it represents the path to a text file (CSV, TSV, or LibSVM) or a LightGBM Dataset binary file.
2163
        label : list, numpy 1-D array, pandas Series / one-column DataFrame or None, optional (default=None)
2164
2165
            Label of the data.
        weight : list, numpy 1-D array, pandas Series or None, optional (default=None)
2166
            Weight for each instance. Weights should be non-negative.
2167
        group : list, numpy 1-D array, pandas Series or None, optional (default=None)
2168
2169
2170
            Group/query data.
            Only used in the learning-to-rank task.
            sum(group) = n_samples.
2171
2172
            For example, if you have a 100-document dataset with ``group = [10, 20, 40, 10, 10, 10]``, that means that you have 6 groups,
            where the first 10 records are in the first group, records 11-30 are in the second group, records 31-70 are in the third group, etc.
2173
        init_score : list, list of lists (for multi-class task), numpy array, pandas Series, pandas DataFrame (for multi-class task), or None, optional (default=None)
2174
            Init score for Dataset.
Nikita Titov's avatar
Nikita Titov committed
2175
        params : dict or None, optional (default=None)
2176
            Other parameters for validation Dataset.
2177
2178
2179

        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
2180
2181
        valid : Dataset
            Validation Dataset with reference to self.
wxchan's avatar
wxchan committed
2182
        """
2183
        ret = Dataset(data, label=label, reference=self,
2184
                      weight=weight, group=group, init_score=init_score,
2185
                      params=params, free_raw_data=self.free_raw_data)
wxchan's avatar
wxchan committed
2186
        ret._predictor = self._predictor
2187
        ret.pandas_categorical = self.pandas_categorical
wxchan's avatar
wxchan committed
2188
        return ret
wxchan's avatar
wxchan committed
2189

2190
2191
2192
2193
2194
    def subset(
        self,
        used_indices: List[int],
        params: Optional[Dict[str, Any]] = None
    ) -> "Dataset":
2195
        """Get subset of current Dataset.
wxchan's avatar
wxchan committed
2196
2197
2198
2199

        Parameters
        ----------
        used_indices : list of int
2200
            Indices used to create the subset.
Nikita Titov's avatar
Nikita Titov committed
2201
        params : dict or None, optional (default=None)
2202
            These parameters will be passed to Dataset constructor.
2203
2204
2205
2206
2207

        Returns
        -------
        subset : Dataset
            Subset of the current Dataset.
wxchan's avatar
wxchan committed
2208
        """
wxchan's avatar
wxchan committed
2209
2210
        if params is None:
            params = self.params
wxchan's avatar
wxchan committed
2211
        ret = Dataset(None, reference=self, feature_name=self.feature_name,
2212
2213
                      categorical_feature=self.categorical_feature, params=params,
                      free_raw_data=self.free_raw_data)
wxchan's avatar
wxchan committed
2214
        ret._predictor = self._predictor
2215
        ret.pandas_categorical = self.pandas_categorical
2216
        ret.used_indices = sorted(used_indices)
wxchan's avatar
wxchan committed
2217
2218
        return ret

2219
    def save_binary(self, filename: Union[str, Path]) -> "Dataset":
2220
        """Save Dataset to a binary file.
wxchan's avatar
wxchan committed
2221

2222
2223
2224
2225
2226
        .. note::

            Please note that `init_score` is not saved in binary file.
            If you need it, please set it again after loading Dataset.

wxchan's avatar
wxchan committed
2227
2228
        Parameters
        ----------
2229
        filename : str or pathlib.Path
wxchan's avatar
wxchan committed
2230
            Name of the output file.
Nikita Titov's avatar
Nikita Titov committed
2231
2232
2233
2234
2235

        Returns
        -------
        self : Dataset
            Returns self.
wxchan's avatar
wxchan committed
2236
2237
2238
        """
        _safe_call(_LIB.LGBM_DatasetSaveBinary(
            self.construct().handle,
2239
            _c_str(str(filename))))
Nikita Titov's avatar
Nikita Titov committed
2240
        return self
wxchan's avatar
wxchan committed
2241

2242
    def _update_params(self, params: Optional[Dict[str, Any]]) -> "Dataset":
2243
2244
        if not params:
            return self
2245
        params = deepcopy(params)
2246
2247
2248
2249
2250

        def update():
            if not self.params:
                self.params = params
            else:
2251
                self._params_back_up = deepcopy(self.params)
2252
2253
2254
2255
2256
2257
                self.params.update(params)

        if self.handle is None:
            update()
        elif params is not None:
            ret = _LIB.LGBM_DatasetUpdateParamChecking(
2258
2259
                _c_str(_param_dict_to_str(self.params)),
                _c_str(_param_dict_to_str(params)))
2260
2261
2262
2263
2264
2265
            if ret != 0:
                # could be updated if data is not freed
                if self.data is not None:
                    update()
                    self._free_handle()
                else:
2266
                    raise LightGBMError(_LIB.LGBM_GetLastError().decode('utf-8'))
Nikita Titov's avatar
Nikita Titov committed
2267
        return self
wxchan's avatar
wxchan committed
2268

2269
    def _reverse_update_params(self) -> "Dataset":
2270
        if self.handle is None:
2271
2272
            self.params = deepcopy(self._params_back_up)
            self._params_back_up = None
Nikita Titov's avatar
Nikita Titov committed
2273
        return self
2274

2275
2276
2277
2278
2279
    def set_field(
        self,
        field_name: str,
        data
    ) -> "Dataset":
wxchan's avatar
wxchan committed
2280
        """Set property into the Dataset.
wxchan's avatar
wxchan committed
2281
2282
2283

        Parameters
        ----------
2284
        field_name : str
2285
            The field name of the information.
2286
2287
        data : list, list of lists (for multi-class task), numpy array, pandas Series, pandas DataFrame (for multi-class task), or None
            The data to be set.
Nikita Titov's avatar
Nikita Titov committed
2288
2289
2290
2291
2292

        Returns
        -------
        self : Dataset
            Dataset with set property.
wxchan's avatar
wxchan committed
2293
        """
2294
        if self.handle is None:
2295
            raise Exception(f"Cannot set {field_name} before construct dataset")
wxchan's avatar
wxchan committed
2296
        if data is None:
2297
            # set to None
wxchan's avatar
wxchan committed
2298
2299
            _safe_call(_LIB.LGBM_DatasetSetField(
                self.handle,
2300
                _c_str(field_name),
wxchan's avatar
wxchan committed
2301
                None,
Guolin Ke's avatar
Guolin Ke committed
2302
                ctypes.c_int(0),
2303
                ctypes.c_int(_FIELD_TYPE_MAPPER[field_name])))
Nikita Titov's avatar
Nikita Titov committed
2304
            return self
2305
        if field_name == 'init_score':
Guolin Ke's avatar
Guolin Ke committed
2306
            dtype = np.float64
2307
            if _is_1d_collection(data):
2308
                data = _list_to_1d_numpy(data, dtype, name=field_name)
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
            elif _is_2d_collection(data):
                data = _data_to_2d_numpy(data, dtype, name=field_name)
                data = data.ravel(order='F')
            else:
                raise TypeError(
                    'init_score must be list, numpy 1-D array or pandas Series.\n'
                    'In multiclass classification init_score can also be a list of lists, numpy 2-D array or pandas DataFrame.'
                )
        else:
            dtype = np.int32 if field_name == 'group' else np.float32
2319
            data = _list_to_1d_numpy(data, dtype, name=field_name)
2320

2321
        if data.dtype == np.float32 or data.dtype == np.float64:
2322
            ptr_data, type_data, _ = _c_float_array(data)
wxchan's avatar
wxchan committed
2323
        elif data.dtype == np.int32:
2324
            ptr_data, type_data, _ = _c_int_array(data)
wxchan's avatar
wxchan committed
2325
        else:
2326
            raise TypeError(f"Expected np.float32/64 or np.int32, met type({data.dtype})")
2327
        if type_data != _FIELD_TYPE_MAPPER[field_name]:
2328
            raise TypeError("Input type error for set_field")
wxchan's avatar
wxchan committed
2329
2330
        _safe_call(_LIB.LGBM_DatasetSetField(
            self.handle,
2331
            _c_str(field_name),
wxchan's avatar
wxchan committed
2332
            ptr_data,
Guolin Ke's avatar
Guolin Ke committed
2333
2334
            ctypes.c_int(len(data)),
            ctypes.c_int(type_data)))
2335
        self.version += 1
Nikita Titov's avatar
Nikita Titov committed
2336
        return self
wxchan's avatar
wxchan committed
2337

2338
    def get_field(self, field_name: str) -> Optional[np.ndarray]:
wxchan's avatar
wxchan committed
2339
        """Get property from the Dataset.
wxchan's avatar
wxchan committed
2340
2341
2342

        Parameters
        ----------
2343
        field_name : str
2344
            The field name of the information.
wxchan's avatar
wxchan committed
2345
2346
2347

        Returns
        -------
2348
        info : numpy array or None
2349
            A numpy array with information from the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2350
        """
2351
        if self.handle is None:
2352
            raise Exception(f"Cannot get {field_name} before construct Dataset")
2353
2354
        tmp_out_len = ctypes.c_int(0)
        out_type = ctypes.c_int(0)
wxchan's avatar
wxchan committed
2355
2356
2357
        ret = ctypes.POINTER(ctypes.c_void_p)()
        _safe_call(_LIB.LGBM_DatasetGetField(
            self.handle,
2358
            _c_str(field_name),
wxchan's avatar
wxchan committed
2359
2360
2361
            ctypes.byref(tmp_out_len),
            ctypes.byref(ret),
            ctypes.byref(out_type)))
2362
        if out_type.value != _FIELD_TYPE_MAPPER[field_name]:
wxchan's avatar
wxchan committed
2363
2364
2365
            raise TypeError("Return type error for get_field")
        if tmp_out_len.value == 0:
            return None
2366
        if out_type.value == _C_API_DTYPE_INT32:
2367
            arr = _cint32_array_to_numpy(ctypes.cast(ret, ctypes.POINTER(ctypes.c_int32)), tmp_out_len.value)
2368
        elif out_type.value == _C_API_DTYPE_FLOAT32:
2369
            arr = _cfloat32_array_to_numpy(ctypes.cast(ret, ctypes.POINTER(ctypes.c_float)), tmp_out_len.value)
2370
        elif out_type.value == _C_API_DTYPE_FLOAT64:
2371
            arr = _cfloat64_array_to_numpy(ctypes.cast(ret, ctypes.POINTER(ctypes.c_double)), tmp_out_len.value)
2372
        else:
wxchan's avatar
wxchan committed
2373
            raise TypeError("Unknown type")
2374
2375
2376
2377
2378
2379
        if field_name == 'init_score':
            num_data = self.num_data()
            num_classes = arr.size // num_data
            if num_classes > 1:
                arr = arr.reshape((num_data, num_classes), order='F')
        return arr
Guolin Ke's avatar
Guolin Ke committed
2380

2381
2382
    def set_categorical_feature(
        self,
2383
        categorical_feature: _LGBM_CategoricalFeatureConfiguration
2384
    ) -> "Dataset":
2385
        """Set categorical features.
2386
2387
2388

        Parameters
        ----------
2389
        categorical_feature : list of str or int, or 'auto'
2390
            Names or indices of categorical features.
Nikita Titov's avatar
Nikita Titov committed
2391
2392
2393
2394
2395

        Returns
        -------
        self : Dataset
            Dataset with set categorical features.
2396
2397
        """
        if self.categorical_feature == categorical_feature:
Nikita Titov's avatar
Nikita Titov committed
2398
            return self
2399
        if self.data is not None:
2400
2401
            if self.categorical_feature is None:
                self.categorical_feature = categorical_feature
Nikita Titov's avatar
Nikita Titov committed
2402
                return self._free_handle()
2403
            elif categorical_feature == 'auto':
Nikita Titov's avatar
Nikita Titov committed
2404
                return self
2405
            else:
2406
2407
2408
                if self.categorical_feature != 'auto':
                    _log_warning('categorical_feature in Dataset is overridden.\n'
                                 f'New categorical_feature is {sorted(list(categorical_feature))}')
2409
                self.categorical_feature = categorical_feature
Nikita Titov's avatar
Nikita Titov committed
2410
                return self._free_handle()
2411
        else:
2412
2413
            raise LightGBMError("Cannot set categorical feature after freed raw data, "
                                "set free_raw_data=False when construct Dataset to avoid this.")
2414

2415
2416
2417
2418
    def _set_predictor(
        self,
        predictor: Optional[_InnerPredictor]
    ) -> "Dataset":
2419
2420
2421
2422
        """Set predictor for continued training.

        It is not recommended for user to call this function.
        Please use init_model argument in engine.train() or engine.cv() instead.
Guolin Ke's avatar
Guolin Ke committed
2423
        """
2424
        if predictor is None and self._predictor is None:
Nikita Titov's avatar
Nikita Titov committed
2425
            return self
2426
2427
2428
        elif isinstance(predictor, _InnerPredictor) and isinstance(self._predictor, _InnerPredictor):
            if (predictor == self._predictor) and (predictor.current_iteration() == self._predictor.current_iteration()):
                return self
2429
        if self.handle is None:
Guolin Ke's avatar
Guolin Ke committed
2430
            self._predictor = predictor
2431
2432
        elif self.data is not None:
            self._predictor = predictor
2433
2434
2435
2436
2437
            self._set_init_score_by_predictor(
                predictor=self._predictor,
                data=self.data,
                used_indices=None
            )
2438
2439
        elif self.used_indices is not None and self.reference is not None and self.reference.data is not None:
            self._predictor = predictor
2440
2441
2442
2443
2444
            self._set_init_score_by_predictor(
                predictor=self._predictor,
                data=self.reference.data,
                used_indices=self.used_indices
            )
Guolin Ke's avatar
Guolin Ke committed
2445
        else:
2446
2447
            raise LightGBMError("Cannot set predictor after freed raw data, "
                                "set free_raw_data=False when construct Dataset to avoid this.")
2448
        return self
Guolin Ke's avatar
Guolin Ke committed
2449

2450
    def set_reference(self, reference: "Dataset") -> "Dataset":
2451
        """Set reference Dataset.
Guolin Ke's avatar
Guolin Ke committed
2452
2453
2454
2455

        Parameters
        ----------
        reference : Dataset
2456
            Reference that is used as a template to construct the current Dataset.
Nikita Titov's avatar
Nikita Titov committed
2457
2458
2459
2460
2461

        Returns
        -------
        self : Dataset
            Dataset with set reference.
Guolin Ke's avatar
Guolin Ke committed
2462
        """
2463
2464
2465
        self.set_categorical_feature(reference.categorical_feature) \
            .set_feature_name(reference.feature_name) \
            ._set_predictor(reference._predictor)
2466
        # we're done if self and reference share a common upstream reference
2467
        if self.get_ref_chain().intersection(reference.get_ref_chain()):
Nikita Titov's avatar
Nikita Titov committed
2468
            return self
Guolin Ke's avatar
Guolin Ke committed
2469
2470
        if self.data is not None:
            self.reference = reference
Nikita Titov's avatar
Nikita Titov committed
2471
            return self._free_handle()
Guolin Ke's avatar
Guolin Ke committed
2472
        else:
2473
2474
            raise LightGBMError("Cannot set reference after freed raw data, "
                                "set free_raw_data=False when construct Dataset to avoid this.")
Guolin Ke's avatar
Guolin Ke committed
2475

2476
    def set_feature_name(self, feature_name: Union[List[str], str]) -> "Dataset":
2477
        """Set feature name.
Guolin Ke's avatar
Guolin Ke committed
2478
2479
2480

        Parameters
        ----------
2481
        feature_name : list of str
2482
            Feature names.
Nikita Titov's avatar
Nikita Titov committed
2483
2484
2485
2486
2487

        Returns
        -------
        self : Dataset
            Dataset with set feature name.
Guolin Ke's avatar
Guolin Ke committed
2488
        """
2489
2490
        if feature_name != 'auto':
            self.feature_name = feature_name
2491
        if self.handle is not None and feature_name is not None and feature_name != 'auto':
wxchan's avatar
wxchan committed
2492
            if len(feature_name) != self.num_feature():
2493
                raise ValueError(f"Length of feature_name({len(feature_name)}) and num_feature({self.num_feature()}) don't match")
2494
            c_feature_name = [_c_str(name) for name in feature_name]
wxchan's avatar
wxchan committed
2495
2496
            _safe_call(_LIB.LGBM_DatasetSetFeatureNames(
                self.handle,
2497
                _c_array(ctypes.c_char_p, c_feature_name),
Guolin Ke's avatar
Guolin Ke committed
2498
                ctypes.c_int(len(feature_name))))
Nikita Titov's avatar
Nikita Titov committed
2499
        return self
Guolin Ke's avatar
Guolin Ke committed
2500

2501
    def set_label(self, label: Optional[_LGBM_LabelType]) -> "Dataset":
2502
        """Set label of Dataset.
Guolin Ke's avatar
Guolin Ke committed
2503
2504
2505

        Parameters
        ----------
2506
        label : list, numpy 1-D array, pandas Series / one-column DataFrame or None
2507
            The label information to be set into Dataset.
Nikita Titov's avatar
Nikita Titov committed
2508
2509
2510
2511
2512

        Returns
        -------
        self : Dataset
            Dataset with set label.
Guolin Ke's avatar
Guolin Ke committed
2513
2514
        """
        self.label = label
2515
        if self.handle is not None:
2516
2517
2518
2519
            if isinstance(label, pd_DataFrame):
                if len(label.columns) > 1:
                    raise ValueError('DataFrame for label cannot have multiple columns')
                _check_for_bad_pandas_dtypes(label.dtypes)
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
                try:
                    # most common case (no nullable dtypes)
                    label = label.to_numpy(dtype=np.float32, copy=False)
                except TypeError:
                    # 1.0 <= pd version < 1.1 and nullable dtypes, least common case
                    # raises error because array is casted to type(pd.NA) and there's no na_value argument
                    label = label.astype(np.float32, copy=False).values
                except ValueError:
                    # data has nullable dtypes, but we can specify na_value argument and copy will be made
                    label = label.to_numpy(dtype=np.float32, na_value=np.nan)
                label_array = np.ravel(label)
2531
            else:
2532
                label_array = _list_to_1d_numpy(label, name='label')
2533
            self.set_field('label', label_array)
2534
            self.label = self.get_field('label')  # original values can be modified at cpp side
Nikita Titov's avatar
Nikita Titov committed
2535
        return self
Guolin Ke's avatar
Guolin Ke committed
2536

2537
    def set_weight(self, weight) -> "Dataset":
2538
        """Set weight of each instance.
Guolin Ke's avatar
Guolin Ke committed
2539
2540
2541

        Parameters
        ----------
2542
        weight : list, numpy 1-D array, pandas Series or None
2543
            Weight to be set for each data point. Weights should be non-negative.
Nikita Titov's avatar
Nikita Titov committed
2544
2545
2546
2547
2548

        Returns
        -------
        self : Dataset
            Dataset with set weight.
Guolin Ke's avatar
Guolin Ke committed
2549
        """
2550
2551
        if weight is not None and np.all(weight == 1):
            weight = None
Guolin Ke's avatar
Guolin Ke committed
2552
        self.weight = weight
2553
        if self.handle is not None and weight is not None:
2554
            weight = _list_to_1d_numpy(weight, name='weight')
wxchan's avatar
wxchan committed
2555
            self.set_field('weight', weight)
2556
            self.weight = self.get_field('weight')  # original values can be modified at cpp side
Nikita Titov's avatar
Nikita Titov committed
2557
        return self
Guolin Ke's avatar
Guolin Ke committed
2558

2559
    def set_init_score(self, init_score) -> "Dataset":
2560
        """Set init score of Booster to start from.
Guolin Ke's avatar
Guolin Ke committed
2561
2562
2563

        Parameters
        ----------
2564
        init_score : list, list of lists (for multi-class task), numpy array, pandas Series, pandas DataFrame (for multi-class task), or None
2565
            Init score for Booster.
Nikita Titov's avatar
Nikita Titov committed
2566
2567
2568
2569
2570

        Returns
        -------
        self : Dataset
            Dataset with set init score.
Guolin Ke's avatar
Guolin Ke committed
2571
2572
        """
        self.init_score = init_score
2573
        if self.handle is not None and init_score is not None:
wxchan's avatar
wxchan committed
2574
            self.set_field('init_score', init_score)
2575
            self.init_score = self.get_field('init_score')  # original values can be modified at cpp side
Nikita Titov's avatar
Nikita Titov committed
2576
        return self
Guolin Ke's avatar
Guolin Ke committed
2577

2578
    def set_group(self, group) -> "Dataset":
2579
        """Set group size of Dataset (used for ranking).
Guolin Ke's avatar
Guolin Ke committed
2580
2581
2582

        Parameters
        ----------
2583
        group : list, numpy 1-D array, pandas Series or None
2584
2585
2586
            Group/query data.
            Only used in the learning-to-rank task.
            sum(group) = n_samples.
2587
2588
            For example, if you have a 100-document dataset with ``group = [10, 20, 40, 10, 10, 10]``, that means that you have 6 groups,
            where the first 10 records are in the first group, records 11-30 are in the second group, records 31-70 are in the third group, etc.
Nikita Titov's avatar
Nikita Titov committed
2589
2590
2591
2592
2593

        Returns
        -------
        self : Dataset
            Dataset with set group.
Guolin Ke's avatar
Guolin Ke committed
2594
2595
        """
        self.group = group
2596
        if self.handle is not None and group is not None:
2597
            group = _list_to_1d_numpy(group, np.int32, name='group')
wxchan's avatar
wxchan committed
2598
            self.set_field('group', group)
Nikita Titov's avatar
Nikita Titov committed
2599
        return self
Guolin Ke's avatar
Guolin Ke committed
2600

2601
    def get_feature_name(self) -> List[str]:
2602
2603
2604
2605
        """Get the names of columns (features) in the Dataset.

        Returns
        -------
2606
        feature_names : list of str
2607
2608
2609
2610
2611
2612
2613
2614
            The names of columns (features) in the Dataset.
        """
        if self.handle is None:
            raise LightGBMError("Cannot get feature_name before construct dataset")
        num_feature = self.num_feature()
        tmp_out_len = ctypes.c_int(0)
        reserved_string_buffer_size = 255
        required_string_buffer_size = ctypes.c_size_t(0)
2615
        string_buffers = [ctypes.create_string_buffer(reserved_string_buffer_size) for _ in range(num_feature)]
2616
2617
2618
        ptr_string_buffers = (ctypes.c_char_p * num_feature)(*map(ctypes.addressof, string_buffers))
        _safe_call(_LIB.LGBM_DatasetGetFeatureNames(
            self.handle,
2619
            ctypes.c_int(num_feature),
2620
            ctypes.byref(tmp_out_len),
2621
            ctypes.c_size_t(reserved_string_buffer_size),
2622
2623
2624
2625
            ctypes.byref(required_string_buffer_size),
            ptr_string_buffers))
        if num_feature != tmp_out_len.value:
            raise ValueError("Length of feature names doesn't equal with num_feature")
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
        actual_string_buffer_size = required_string_buffer_size.value
        # if buffer length is not long enough, reallocate buffers
        if reserved_string_buffer_size < actual_string_buffer_size:
            string_buffers = [ctypes.create_string_buffer(actual_string_buffer_size) for _ in range(num_feature)]
            ptr_string_buffers = (ctypes.c_char_p * num_feature)(*map(ctypes.addressof, string_buffers))
            _safe_call(_LIB.LGBM_DatasetGetFeatureNames(
                self.handle,
                ctypes.c_int(num_feature),
                ctypes.byref(tmp_out_len),
                ctypes.c_size_t(actual_string_buffer_size),
                ctypes.byref(required_string_buffer_size),
                ptr_string_buffers))
2638
        return [string_buffers[i].value.decode('utf-8') for i in range(num_feature)]
2639

2640
    def get_label(self) -> Optional[np.ndarray]:
2641
        """Get the label of the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2642
2643
2644

        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
2645
        label : numpy array or None
2646
            The label information from the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2647
        """
2648
        if self.label is None:
wxchan's avatar
wxchan committed
2649
            self.label = self.get_field('label')
Guolin Ke's avatar
Guolin Ke committed
2650
2651
        return self.label

2652
    def get_weight(self) -> Optional[np.ndarray]:
2653
        """Get the weight of the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2654
2655
2656

        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
2657
        weight : numpy array or None
2658
            Weight for each data point from the Dataset. Weights should be non-negative.
Guolin Ke's avatar
Guolin Ke committed
2659
        """
2660
        if self.weight is None:
wxchan's avatar
wxchan committed
2661
            self.weight = self.get_field('weight')
Guolin Ke's avatar
Guolin Ke committed
2662
2663
        return self.weight

2664
    def get_init_score(self) -> Optional[np.ndarray]:
2665
        """Get the initial score of the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2666
2667
2668

        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
2669
        init_score : numpy array or None
2670
            Init score of Booster.
Guolin Ke's avatar
Guolin Ke committed
2671
        """
2672
        if self.init_score is None:
wxchan's avatar
wxchan committed
2673
            self.init_score = self.get_field('init_score')
Guolin Ke's avatar
Guolin Ke committed
2674
2675
        return self.init_score

2676
2677
2678
2679
2680
    def get_data(self):
        """Get the raw data of the Dataset.

        Returns
        -------
2681
        data : str, pathlib.Path, numpy array, pandas DataFrame, H2O DataTable's Frame, scipy.sparse, Sequence, list of Sequence or list of numpy array or None
2682
2683
2684
2685
            Raw data used in the Dataset construction.
        """
        if self.handle is None:
            raise Exception("Cannot get data before construct Dataset")
2686
        if self._need_slice and self.used_indices is not None and self.reference is not None:
Guolin Ke's avatar
Guolin Ke committed
2687
2688
2689
2690
            self.data = self.reference.data
            if self.data is not None:
                if isinstance(self.data, np.ndarray) or scipy.sparse.issparse(self.data):
                    self.data = self.data[self.used_indices, :]
2691
                elif isinstance(self.data, pd_DataFrame):
Guolin Ke's avatar
Guolin Ke committed
2692
                    self.data = self.data.iloc[self.used_indices].copy()
2693
                elif isinstance(self.data, dt_DataTable):
Guolin Ke's avatar
Guolin Ke committed
2694
                    self.data = self.data[self.used_indices, :]
2695
2696
2697
2698
                elif isinstance(self.data, Sequence):
                    self.data = self.data[self.used_indices]
                elif isinstance(self.data, list) and len(self.data) > 0 and all(isinstance(x, Sequence) for x in self.data):
                    self.data = np.array([row for row in self._yield_row_from_seqlist(self.data, self.used_indices)])
Guolin Ke's avatar
Guolin Ke committed
2699
                else:
2700
2701
                    _log_warning(f"Cannot subset {type(self.data).__name__} type of raw data.\n"
                                 "Returning original raw data")
2702
            self._need_slice = False
Guolin Ke's avatar
Guolin Ke committed
2703
2704
2705
        if self.data is None:
            raise LightGBMError("Cannot call `get_data` after freed raw data, "
                                "set free_raw_data=False when construct Dataset to avoid this.")
2706
2707
        return self.data

Guolin Ke's avatar
Guolin Ke committed
2708
    def get_group(self):
2709
        """Get the group of the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2710
2711
2712

        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
2713
        group : numpy array or None
2714
2715
2716
            Group/query data.
            Only used in the learning-to-rank task.
            sum(group) = n_samples.
2717
2718
            For example, if you have a 100-document dataset with ``group = [10, 20, 40, 10, 10, 10]``, that means that you have 6 groups,
            where the first 10 records are in the first group, records 11-30 are in the second group, records 31-70 are in the third group, etc.
Guolin Ke's avatar
Guolin Ke committed
2719
        """
2720
        if self.group is None:
wxchan's avatar
wxchan committed
2721
            self.group = self.get_field('group')
Guolin Ke's avatar
Guolin Ke committed
2722
2723
            if self.group is not None:
                # group data from LightGBM is boundaries data, need to convert to group size
Nikita Titov's avatar
Nikita Titov committed
2724
                self.group = np.diff(self.group)
Guolin Ke's avatar
Guolin Ke committed
2725
2726
        return self.group

2727
    def num_data(self) -> int:
2728
        """Get the number of rows in the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2729
2730
2731

        Returns
        -------
2732
2733
        number_of_rows : int
            The number of rows in the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2734
        """
2735
        if self.handle is not None:
2736
            ret = ctypes.c_int(0)
wxchan's avatar
wxchan committed
2737
2738
2739
            _safe_call(_LIB.LGBM_DatasetGetNumData(self.handle,
                                                   ctypes.byref(ret)))
            return ret.value
Guolin Ke's avatar
Guolin Ke committed
2740
        else:
2741
            raise LightGBMError("Cannot get num_data before construct dataset")
Guolin Ke's avatar
Guolin Ke committed
2742

2743
    def num_feature(self) -> int:
2744
        """Get the number of columns (features) in the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2745
2746
2747

        Returns
        -------
2748
2749
        number_of_columns : int
            The number of columns (features) in the Dataset.
Guolin Ke's avatar
Guolin Ke committed
2750
        """
2751
        if self.handle is not None:
2752
            ret = ctypes.c_int(0)
wxchan's avatar
wxchan committed
2753
2754
2755
            _safe_call(_LIB.LGBM_DatasetGetNumFeature(self.handle,
                                                      ctypes.byref(ret)))
            return ret.value
Guolin Ke's avatar
Guolin Ke committed
2756
        else:
2757
            raise LightGBMError("Cannot get num_feature before construct dataset")
Guolin Ke's avatar
Guolin Ke committed
2758

2759
    def feature_num_bin(self, feature: Union[int, str]) -> int:
2760
2761
2762
2763
        """Get the number of bins for a feature.

        Parameters
        ----------
2764
2765
        feature : int or str
            Index or name of the feature.
2766
2767
2768
2769
2770
2771
2772

        Returns
        -------
        number_of_bins : int
            The number of constructed bins for the feature in the Dataset.
        """
        if self.handle is not None:
2773
            if isinstance(feature, str):
2774
2775
2776
                feature_index = self.feature_name.index(feature)
            else:
                feature_index = feature
2777
2778
            ret = ctypes.c_int(0)
            _safe_call(_LIB.LGBM_DatasetGetFeatureNumBin(self.handle,
2779
                                                         ctypes.c_int(feature_index),
2780
2781
2782
2783
2784
                                                         ctypes.byref(ret)))
            return ret.value
        else:
            raise LightGBMError("Cannot get feature_num_bin before construct dataset")

2785
    def get_ref_chain(self, ref_limit: int = 100) -> Set["Dataset"]:
2786
2787
2788
2789
2790
        """Get a chain of Dataset objects.

        Starts with r, then goes to r.reference (if exists),
        then to r.reference.reference, etc.
        until we hit ``ref_limit`` or a reference loop.
2791
2792
2793
2794
2795

        Parameters
        ----------
        ref_limit : int, optional (default=100)
            The limit number of references.
2796
2797
2798

        Returns
        -------
2799
2800
2801
        ref_chain : set of Dataset
            Chain of references of the Datasets.
        """
2802
        head = self
2803
        ref_chain: Set[Dataset] = set()
2804
2805
        while len(ref_chain) < ref_limit:
            if isinstance(head, Dataset):
2806
                ref_chain.add(head)
2807
2808
2809
2810
2811
2812
                if (head.reference is not None) and (head.reference not in ref_chain):
                    head = head.reference
                else:
                    break
            else:
                break
Nikita Titov's avatar
Nikita Titov committed
2813
        return ref_chain
2814

2815
    def add_features_from(self, other: "Dataset") -> "Dataset":
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
        """Add features from other Dataset to the current Dataset.

        Both Datasets must be constructed before calling this method.

        Parameters
        ----------
        other : Dataset
            The Dataset to take features from.

        Returns
        -------
        self : Dataset
            Dataset with the new features added.
        """
        if self.handle is None or other.handle is None:
            raise ValueError('Both source and target Datasets must be constructed before adding features')
        _safe_call(_LIB.LGBM_DatasetAddFeaturesFrom(self.handle, other.handle))
Guolin Ke's avatar
Guolin Ke committed
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
        was_none = self.data is None
        old_self_data_type = type(self.data).__name__
        if other.data is None:
            self.data = None
        elif self.data is not None:
            if isinstance(self.data, np.ndarray):
                if isinstance(other.data, np.ndarray):
                    self.data = np.hstack((self.data, other.data))
                elif scipy.sparse.issparse(other.data):
                    self.data = np.hstack((self.data, other.data.toarray()))
2843
                elif isinstance(other.data, pd_DataFrame):
Guolin Ke's avatar
Guolin Ke committed
2844
                    self.data = np.hstack((self.data, other.data.values))
2845
                elif isinstance(other.data, dt_DataTable):
Guolin Ke's avatar
Guolin Ke committed
2846
2847
2848
2849
2850
2851
2852
                    self.data = np.hstack((self.data, other.data.to_numpy()))
                else:
                    self.data = None
            elif scipy.sparse.issparse(self.data):
                sparse_format = self.data.getformat()
                if isinstance(other.data, np.ndarray) or scipy.sparse.issparse(other.data):
                    self.data = scipy.sparse.hstack((self.data, other.data), format=sparse_format)
2853
                elif isinstance(other.data, pd_DataFrame):
Guolin Ke's avatar
Guolin Ke committed
2854
                    self.data = scipy.sparse.hstack((self.data, other.data.values), format=sparse_format)
2855
                elif isinstance(other.data, dt_DataTable):
Guolin Ke's avatar
Guolin Ke committed
2856
2857
2858
                    self.data = scipy.sparse.hstack((self.data, other.data.to_numpy()), format=sparse_format)
                else:
                    self.data = None
2859
            elif isinstance(self.data, pd_DataFrame):
Guolin Ke's avatar
Guolin Ke committed
2860
2861
                if not PANDAS_INSTALLED:
                    raise LightGBMError("Cannot add features to DataFrame type of raw data "
2862
2863
                                        "without pandas installed. "
                                        "Install pandas and restart your session.")
Guolin Ke's avatar
Guolin Ke committed
2864
                if isinstance(other.data, np.ndarray):
2865
                    self.data = concat((self.data, pd_DataFrame(other.data)),
Guolin Ke's avatar
Guolin Ke committed
2866
2867
                                       axis=1, ignore_index=True)
                elif scipy.sparse.issparse(other.data):
2868
                    self.data = concat((self.data, pd_DataFrame(other.data.toarray())),
Guolin Ke's avatar
Guolin Ke committed
2869
                                       axis=1, ignore_index=True)
2870
                elif isinstance(other.data, pd_DataFrame):
Guolin Ke's avatar
Guolin Ke committed
2871
2872
                    self.data = concat((self.data, other.data),
                                       axis=1, ignore_index=True)
2873
2874
                elif isinstance(other.data, dt_DataTable):
                    self.data = concat((self.data, pd_DataFrame(other.data.to_numpy())),
Guolin Ke's avatar
Guolin Ke committed
2875
2876
2877
                                       axis=1, ignore_index=True)
                else:
                    self.data = None
2878
            elif isinstance(self.data, dt_DataTable):
Guolin Ke's avatar
Guolin Ke committed
2879
                if isinstance(other.data, np.ndarray):
2880
                    self.data = dt_DataTable(np.hstack((self.data.to_numpy(), other.data)))
Guolin Ke's avatar
Guolin Ke committed
2881
                elif scipy.sparse.issparse(other.data):
2882
2883
2884
2885
2886
                    self.data = dt_DataTable(np.hstack((self.data.to_numpy(), other.data.toarray())))
                elif isinstance(other.data, pd_DataFrame):
                    self.data = dt_DataTable(np.hstack((self.data.to_numpy(), other.data.values)))
                elif isinstance(other.data, dt_DataTable):
                    self.data = dt_DataTable(np.hstack((self.data.to_numpy(), other.data.to_numpy())))
Guolin Ke's avatar
Guolin Ke committed
2887
2888
2889
2890
2891
                else:
                    self.data = None
            else:
                self.data = None
        if self.data is None:
2892
2893
            err_msg = (f"Cannot add features from {type(other.data).__name__} type of raw data to "
                       f"{old_self_data_type} type of raw data.\n")
Guolin Ke's avatar
Guolin Ke committed
2894
2895
            err_msg += ("Set free_raw_data=False when construct Dataset to avoid this"
                        if was_none else "Freeing raw data")
2896
            _log_warning(err_msg)
Guolin Ke's avatar
Guolin Ke committed
2897
        self.feature_name = self.get_feature_name()
2898
2899
        _log_warning("Reseting categorical features.\n"
                     "You can set new categorical features via ``set_categorical_feature`` method")
Guolin Ke's avatar
Guolin Ke committed
2900
2901
        self.categorical_feature = "auto"
        self.pandas_categorical = None
2902
2903
        return self

2904
    def _dump_text(self, filename: Union[str, Path]) -> "Dataset":
2905
2906
2907
2908
2909
2910
        """Save Dataset to a text file.

        This format cannot be loaded back in by LightGBM, but is useful for debugging purposes.

        Parameters
        ----------
2911
        filename : str or pathlib.Path
2912
2913
2914
2915
2916
2917
2918
2919
2920
            Name of the output file.

        Returns
        -------
        self : Dataset
            Returns self.
        """
        _safe_call(_LIB.LGBM_DatasetDumpText(
            self.construct().handle,
2921
            _c_str(str(filename))))
2922
2923
        return self

wxchan's avatar
wxchan committed
2924

2925
2926
2927
2928
_LGBM_CustomObjectiveFunction = Callable[
    [np.ndarray, Dataset],
    Tuple[np.ndarray, np.ndarray]
]
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
_LGBM_CustomEvalFunction = Union[
    Callable[
        [np.ndarray, Dataset],
        _LGBM_EvalFunctionResultType
    ],
    Callable[
        [np.ndarray, Dataset],
        List[_LGBM_EvalFunctionResultType]
    ]
]
2939
2940


2941
class Booster:
2942
    """Booster in LightGBM."""
2943

2944
2945
2946
2947
2948
2949
2950
    def __init__(
        self,
        params: Optional[Dict[str, Any]] = None,
        train_set: Optional[Dataset] = None,
        model_file: Optional[Union[str, Path]] = None,
        model_str: Optional[str] = None
    ):
2951
        """Initialize the Booster.
wxchan's avatar
wxchan committed
2952
2953
2954

        Parameters
        ----------
Nikita Titov's avatar
Nikita Titov committed
2955
        params : dict or None, optional (default=None)
2956
2957
2958
            Parameters for Booster.
        train_set : Dataset or None, optional (default=None)
            Training dataset.
2959
        model_file : str, pathlib.Path or None, optional (default=None)
wxchan's avatar
wxchan committed
2960
            Path to the model file.
2961
        model_str : str or None, optional (default=None)
2962
            Model will be loaded from this string.
wxchan's avatar
wxchan committed
2963
        """
2964
        self.handle = None
2965
        self._network = False
wxchan's avatar
wxchan committed
2966
        self.__need_reload_eval_info = True
2967
        self._train_data_name = "training"
2968
        self.__set_objective_to_none = False
wxchan's avatar
wxchan committed
2969
        self.best_iteration = -1
2970
        self.best_score: _LGBM_BoosterBestScoreType = {}
2971
        params = {} if params is None else deepcopy(params)
wxchan's avatar
wxchan committed
2972
        if train_set is not None:
2973
            # Training task
wxchan's avatar
wxchan committed
2974
            if not isinstance(train_set, Dataset):
2975
                raise TypeError(f'Training data should be Dataset instance, met {type(train_set).__name__}')
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
            params = _choose_param_value(
                main_param_name="machines",
                params=params,
                default_value=None
            )
            # if "machines" is given, assume user wants to do distributed learning, and set up network
            if params["machines"] is None:
                params.pop("machines", None)
            else:
                machines = params["machines"]
                if isinstance(machines, str):
                    num_machines_from_machine_list = len(machines.split(','))
                elif isinstance(machines, (list, set)):
                    num_machines_from_machine_list = len(machines)
                    machines = ','.join(machines)
                else:
                    raise ValueError("Invalid machines in params.")

                params = _choose_param_value(
                    main_param_name="num_machines",
                    params=params,
                    default_value=num_machines_from_machine_list
                )
                params = _choose_param_value(
                    main_param_name="local_listen_port",
                    params=params,
                    default_value=12400
                )
                self.set_network(
                    machines=machines,
                    local_listen_port=params["local_listen_port"],
                    listen_time_out=params.get("time_out", 120),
                    num_machines=params["num_machines"]
                )
3010
            # construct booster object
3011
3012
3013
            train_set.construct()
            # copy the parameters from train_set
            params.update(train_set.get_params())
3014
            params_str = _param_dict_to_str(params)
3015
            self.handle = ctypes.c_void_p()
wxchan's avatar
wxchan committed
3016
            _safe_call(_LIB.LGBM_BoosterCreate(
3017
                train_set.handle,
3018
                _c_str(params_str),
wxchan's avatar
wxchan committed
3019
                ctypes.byref(self.handle)))
3020
            # save reference to data
wxchan's avatar
wxchan committed
3021
            self.train_set = train_set
3022
3023
            self.valid_sets: List[Dataset] = []
            self.name_valid_sets: List[str] = []
wxchan's avatar
wxchan committed
3024
            self.__num_dataset = 1
Guolin Ke's avatar
Guolin Ke committed
3025
3026
            self.__init_predictor = train_set._predictor
            if self.__init_predictor is not None:
wxchan's avatar
wxchan committed
3027
3028
                _safe_call(_LIB.LGBM_BoosterMerge(
                    self.handle,
Guolin Ke's avatar
Guolin Ke committed
3029
                    self.__init_predictor.handle))
Guolin Ke's avatar
Guolin Ke committed
3030
            out_num_class = ctypes.c_int(0)
wxchan's avatar
wxchan committed
3031
3032
3033
3034
            _safe_call(_LIB.LGBM_BoosterGetNumClasses(
                self.handle,
                ctypes.byref(out_num_class)))
            self.__num_class = out_num_class.value
3035
            # buffer for inner predict
wxchan's avatar
wxchan committed
3036
3037
3038
            self.__inner_predict_buffer = [None]
            self.__is_predicted_cur_iter = [False]
            self.__get_eval_info()
3039
            self.pandas_categorical = train_set.pandas_categorical
3040
            self.train_set_version = train_set.version
wxchan's avatar
wxchan committed
3041
        elif model_file is not None:
3042
            # Prediction task
Guolin Ke's avatar
Guolin Ke committed
3043
            out_num_iterations = ctypes.c_int(0)
3044
            self.handle = ctypes.c_void_p()
wxchan's avatar
wxchan committed
3045
            _safe_call(_LIB.LGBM_BoosterCreateFromModelfile(
3046
                _c_str(str(model_file)),
wxchan's avatar
wxchan committed
3047
3048
                ctypes.byref(out_num_iterations),
                ctypes.byref(self.handle)))
Guolin Ke's avatar
Guolin Ke committed
3049
            out_num_class = ctypes.c_int(0)
wxchan's avatar
wxchan committed
3050
3051
3052
3053
            _safe_call(_LIB.LGBM_BoosterGetNumClasses(
                self.handle,
                ctypes.byref(out_num_class)))
            self.__num_class = out_num_class.value
3054
            self.pandas_categorical = _load_pandas_categorical(file_name=model_file)
3055
3056
3057
            if params:
                _log_warning('Ignoring params argument, using parameters from model file.')
            params = self._get_loaded_param()
3058
        elif model_str is not None:
3059
            self.model_from_string(model_str)
wxchan's avatar
wxchan committed
3060
        else:
3061
3062
            raise TypeError('Need at least one training dataset or model file or model string '
                            'to create Booster instance')
3063
        self.params = params
wxchan's avatar
wxchan committed
3064

3065
    def __del__(self) -> None:
3066
        try:
3067
            if self._network:
3068
3069
3070
3071
3072
3073
3074
3075
                self.free_network()
        except AttributeError:
            pass
        try:
            if self.handle is not None:
                _safe_call(_LIB.LGBM_BoosterFree(self.handle))
        except AttributeError:
            pass
wxchan's avatar
wxchan committed
3076

3077
    def __copy__(self) -> "Booster":
wxchan's avatar
wxchan committed
3078
3079
        return self.__deepcopy__(None)

3080
    def __deepcopy__(self, _) -> "Booster":
3081
        model_str = self.model_to_string(num_iteration=-1)
3082
        booster = Booster(model_str=model_str)
3083
        return booster
wxchan's avatar
wxchan committed
3084

3085
    def __getstate__(self) -> Dict[str, Any]:
wxchan's avatar
wxchan committed
3086
3087
3088
3089
3090
        this = self.__dict__.copy()
        handle = this['handle']
        this.pop('train_set', None)
        this.pop('valid_sets', None)
        if handle is not None:
3091
            this["handle"] = self.model_to_string(num_iteration=-1)
wxchan's avatar
wxchan committed
3092
3093
        return this

3094
    def __setstate__(self, state: Dict[str, Any]) -> None:
3095
3096
        model_str = state.get('handle', None)
        if model_str is not None:
wxchan's avatar
wxchan committed
3097
            handle = ctypes.c_void_p()
Guolin Ke's avatar
Guolin Ke committed
3098
            out_num_iterations = ctypes.c_int(0)
3099
            _safe_call(_LIB.LGBM_BoosterLoadModelFromString(
3100
                _c_str(model_str),
3101
3102
                ctypes.byref(out_num_iterations),
                ctypes.byref(handle)))
wxchan's avatar
wxchan committed
3103
3104
3105
            state['handle'] = handle
        self.__dict__.update(state)

3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
    def _get_loaded_param(self) -> Dict[str, Any]:
        buffer_len = 1 << 20
        tmp_out_len = ctypes.c_int64(0)
        string_buffer = ctypes.create_string_buffer(buffer_len)
        ptr_string_buffer = ctypes.c_char_p(*[ctypes.addressof(string_buffer)])
        _safe_call(_LIB.LGBM_BoosterGetLoadedParam(
            self.handle,
            ctypes.c_int64(buffer_len),
            ctypes.byref(tmp_out_len),
            ptr_string_buffer))
        actual_len = tmp_out_len.value
        # if buffer length is not long enough, re-allocate a buffer
        if actual_len > buffer_len:
            string_buffer = ctypes.create_string_buffer(actual_len)
            ptr_string_buffer = ctypes.c_char_p(*[ctypes.addressof(string_buffer)])
            _safe_call(_LIB.LGBM_BoosterGetLoadedParam(
                self.handle,
                ctypes.c_int64(actual_len),
                ctypes.byref(tmp_out_len),
                ptr_string_buffer))
        return json.loads(string_buffer.value.decode('utf-8'))

3128
    def free_dataset(self) -> "Booster":
Nikita Titov's avatar
Nikita Titov committed
3129
3130
3131
3132
3133
3134
3135
        """Free Booster's Datasets.

        Returns
        -------
        self : Booster
            Booster without Datasets.
        """
wxchan's avatar
wxchan committed
3136
3137
        self.__dict__.pop('train_set', None)
        self.__dict__.pop('valid_sets', None)
3138
        self.__num_dataset = 0
Nikita Titov's avatar
Nikita Titov committed
3139
        return self
wxchan's avatar
wxchan committed
3140

3141
    def _free_buffer(self) -> "Booster":
3142
3143
        self.__inner_predict_buffer = []
        self.__is_predicted_cur_iter = []
Nikita Titov's avatar
Nikita Titov committed
3144
        return self
3145

3146
3147
3148
3149
3150
3151
3152
    def set_network(
        self,
        machines: Union[List[str], Set[str], str],
        local_listen_port: int = 12400,
        listen_time_out: int = 120,
        num_machines: int = 1
    ) -> "Booster":
3153
3154
3155
3156
        """Set the network configuration.

        Parameters
        ----------
3157
        machines : list, set or str
3158
            Names of machines.
Nikita Titov's avatar
Nikita Titov committed
3159
        local_listen_port : int, optional (default=12400)
3160
            TCP listen port for local machines.
Nikita Titov's avatar
Nikita Titov committed
3161
        listen_time_out : int, optional (default=120)
3162
            Socket time-out in minutes.
Nikita Titov's avatar
Nikita Titov committed
3163
        num_machines : int, optional (default=1)
3164
            The number of machines for distributed learning application.
Nikita Titov's avatar
Nikita Titov committed
3165
3166
3167
3168
3169

        Returns
        -------
        self : Booster
            Booster with set network.
3170
        """
3171
3172
        if isinstance(machines, (list, set)):
            machines = ','.join(machines)
3173
        _safe_call(_LIB.LGBM_NetworkInit(_c_str(machines),
3174
3175
3176
                                         ctypes.c_int(local_listen_port),
                                         ctypes.c_int(listen_time_out),
                                         ctypes.c_int(num_machines)))
3177
        self._network = True
Nikita Titov's avatar
Nikita Titov committed
3178
        return self
3179

3180
    def free_network(self) -> "Booster":
Nikita Titov's avatar
Nikita Titov committed
3181
3182
3183
3184
3185
3186
3187
        """Free Booster's network.

        Returns
        -------
        self : Booster
            Booster with freed network.
        """
3188
        _safe_call(_LIB.LGBM_NetworkFree())
3189
        self._network = False
Nikita Titov's avatar
Nikita Titov committed
3190
        return self
3191

3192
    def trees_to_dataframe(self) -> pd_DataFrame:
3193
3194
        """Parse the fitted model and return in an easy-to-read pandas DataFrame.

3195
3196
3197
3198
        The returned DataFrame has the following columns.

            - ``tree_index`` : int64, which tree a node belongs to. 0-based, so a value of ``6``, for example, means "this node is in the 7th tree".
            - ``node_depth`` : int64, how far a node is from the root of the tree. The root node has a value of ``1``, its direct children are ``2``, etc.
3199
3200
3201
3202
3203
            - ``node_index`` : str, unique identifier for a node.
            - ``left_child`` : str, ``node_index`` of the child node to the left of a split. ``None`` for leaf nodes.
            - ``right_child`` : str, ``node_index`` of the child node to the right of a split. ``None`` for leaf nodes.
            - ``parent_index`` : str, ``node_index`` of this node's parent. ``None`` for the root node.
            - ``split_feature`` : str, name of the feature used for splitting. ``None`` for leaf nodes.
3204
3205
            - ``split_gain`` : float64, gain from adding this split to the tree. ``NaN`` for leaf nodes.
            - ``threshold`` : float64, value of the feature used to decide which side of the split a record will go down. ``NaN`` for leaf nodes.
3206
            - ``decision_type`` : str, logical operator describing how to compare a value to ``threshold``.
3207
3208
              For example, ``split_feature = "Column_10", threshold = 15, decision_type = "<="`` means that
              records where ``Column_10 <= 15`` follow the left side of the split, otherwise follows the right side of the split. ``None`` for leaf nodes.
3209
3210
            - ``missing_direction`` : str, split direction that missing values should go to. ``None`` for leaf nodes.
            - ``missing_type`` : str, describes what types of values are treated as missing.
3211
            - ``value`` : float64, predicted value for this leaf node, multiplied by the learning rate.
3212
            - ``weight`` : float64 or int64, sum of Hessian (second-order derivative of objective), summed over observations that fall in this node.
3213
3214
            - ``count`` : int64, number of records in the training data that fall into this node.

3215
3216
3217
3218
3219
3220
        Returns
        -------
        result : pandas DataFrame
            Returns a pandas DataFrame of the parsed model.
        """
        if not PANDAS_INSTALLED:
3221
3222
            raise LightGBMError('This method cannot be run without pandas installed. '
                                'You must install pandas and restart your session to use this method.')
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233

        if self.num_trees() == 0:
            raise LightGBMError('There are no trees in this Booster and thus nothing to parse')

        def _is_split_node(tree):
            return 'split_index' in tree.keys()

        def create_node_record(tree, node_depth=1, tree_index=None,
                               feature_names=None, parent_node=None):

            def _get_node_index(tree, tree_index):
3234
                tree_num = f'{tree_index}-' if tree_index is not None else ''
3235
3236
3237
                is_split = _is_split_node(tree)
                node_type = 'S' if is_split else 'L'
                # if a single node tree it won't have `leaf_index` so return 0
3238
3239
                node_num = tree.get('split_index' if is_split else 'leaf_index', 0)
                return f"{tree_num}{node_type}{node_num}"
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251

            def _get_split_feature(tree, feature_names):
                if _is_split_node(tree):
                    if feature_names is not None:
                        feature_name = feature_names[tree['split_feature']]
                    else:
                        feature_name = tree['split_feature']
                else:
                    feature_name = None
                return feature_name

            def _is_single_node_tree(tree):
3252
                return set(tree.keys()) == {'leaf_value'}
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325

            # Create the node record, and populate universal data members
            node = OrderedDict()
            node['tree_index'] = tree_index
            node['node_depth'] = node_depth
            node['node_index'] = _get_node_index(tree, tree_index)
            node['left_child'] = None
            node['right_child'] = None
            node['parent_index'] = parent_node
            node['split_feature'] = _get_split_feature(tree, feature_names)
            node['split_gain'] = None
            node['threshold'] = None
            node['decision_type'] = None
            node['missing_direction'] = None
            node['missing_type'] = None
            node['value'] = None
            node['weight'] = None
            node['count'] = None

            # Update values to reflect node type (leaf or split)
            if _is_split_node(tree):
                node['left_child'] = _get_node_index(tree['left_child'], tree_index)
                node['right_child'] = _get_node_index(tree['right_child'], tree_index)
                node['split_gain'] = tree['split_gain']
                node['threshold'] = tree['threshold']
                node['decision_type'] = tree['decision_type']
                node['missing_direction'] = 'left' if tree['default_left'] else 'right'
                node['missing_type'] = tree['missing_type']
                node['value'] = tree['internal_value']
                node['weight'] = tree['internal_weight']
                node['count'] = tree['internal_count']
            else:
                node['value'] = tree['leaf_value']
                if not _is_single_node_tree(tree):
                    node['weight'] = tree['leaf_weight']
                    node['count'] = tree['leaf_count']

            return node

        def tree_dict_to_node_list(tree, node_depth=1, tree_index=None,
                                   feature_names=None, parent_node=None):

            node = create_node_record(tree,
                                      node_depth=node_depth,
                                      tree_index=tree_index,
                                      feature_names=feature_names,
                                      parent_node=parent_node)

            res = [node]

            if _is_split_node(tree):
                # traverse the next level of the tree
                children = ['left_child', 'right_child']
                for child in children:
                    subtree_list = tree_dict_to_node_list(
                        tree[child],
                        node_depth=node_depth + 1,
                        tree_index=tree_index,
                        feature_names=feature_names,
                        parent_node=node['node_index'])
                    # In tree format, "subtree_list" is a list of node records (dicts),
                    # and we add node to the list.
                    res.extend(subtree_list)
            return res

        model_dict = self.dump_model()
        feature_names = model_dict['feature_names']
        model_list = []
        for tree in model_dict['tree_info']:
            model_list.extend(tree_dict_to_node_list(tree['tree_structure'],
                                                     tree_index=tree['tree_index'],
                                                     feature_names=feature_names))

3326
        return pd_DataFrame(model_list, columns=model_list[0].keys())
3327

3328
    def set_train_data_name(self, name: str) -> "Booster":
3329
3330
3331
3332
        """Set the name to the training Dataset.

        Parameters
        ----------
3333
        name : str
Nikita Titov's avatar
Nikita Titov committed
3334
3335
3336
3337
3338
3339
            Name for the training Dataset.

        Returns
        -------
        self : Booster
            Booster with set training Dataset name.
3340
        """
3341
        self._train_data_name = name
Nikita Titov's avatar
Nikita Titov committed
3342
        return self
wxchan's avatar
wxchan committed
3343

3344
    def add_valid(self, data: Dataset, name: str) -> "Booster":
3345
        """Add validation data.
wxchan's avatar
wxchan committed
3346
3347
3348
3349

        Parameters
        ----------
        data : Dataset
3350
            Validation data.
3351
        name : str
3352
            Name of validation data.
Nikita Titov's avatar
Nikita Titov committed
3353
3354
3355
3356
3357

        Returns
        -------
        self : Booster
            Booster with set validation data.
wxchan's avatar
wxchan committed
3358
        """
Guolin Ke's avatar
Guolin Ke committed
3359
        if not isinstance(data, Dataset):
3360
            raise TypeError(f'Validation data should be Dataset instance, met {type(data).__name__}')
Guolin Ke's avatar
Guolin Ke committed
3361
        if data._predictor is not self.__init_predictor:
3362
3363
            raise LightGBMError("Add validation data failed, "
                                "you should use same predictor for these data")
wxchan's avatar
wxchan committed
3364
3365
        _safe_call(_LIB.LGBM_BoosterAddValidData(
            self.handle,
wxchan's avatar
wxchan committed
3366
            data.construct().handle))
wxchan's avatar
wxchan committed
3367
3368
3369
3370
3371
        self.valid_sets.append(data)
        self.name_valid_sets.append(name)
        self.__num_dataset += 1
        self.__inner_predict_buffer.append(None)
        self.__is_predicted_cur_iter.append(False)
Nikita Titov's avatar
Nikita Titov committed
3372
        return self
wxchan's avatar
wxchan committed
3373

3374
    def reset_parameter(self, params: Dict[str, Any]) -> "Booster":
3375
        """Reset parameters of Booster.
wxchan's avatar
wxchan committed
3376
3377
3378
3379

        Parameters
        ----------
        params : dict
3380
            New parameters for Booster.
Nikita Titov's avatar
Nikita Titov committed
3381
3382
3383
3384
3385

        Returns
        -------
        self : Booster
            Booster with new parameters.
wxchan's avatar
wxchan committed
3386
        """
3387
        params_str = _param_dict_to_str(params)
wxchan's avatar
wxchan committed
3388
3389
3390
        if params_str:
            _safe_call(_LIB.LGBM_BoosterResetParameter(
                self.handle,
3391
                _c_str(params_str)))
Guolin Ke's avatar
Guolin Ke committed
3392
        self.params.update(params)
Nikita Titov's avatar
Nikita Titov committed
3393
        return self
wxchan's avatar
wxchan committed
3394

3395
3396
3397
3398
3399
    def update(
        self,
        train_set: Optional[Dataset] = None,
        fobj: Optional[_LGBM_CustomObjectiveFunction] = None
    ) -> bool:
Nikita Titov's avatar
Nikita Titov committed
3400
        """Update Booster for one iteration.
3401

wxchan's avatar
wxchan committed
3402
3403
        Parameters
        ----------
3404
3405
3406
3407
        train_set : Dataset or None, optional (default=None)
            Training data.
            If None, last training data is used.
        fobj : callable or None, optional (default=None)
wxchan's avatar
wxchan committed
3408
            Customized objective function.
3409
3410
3411
            Should accept two parameters: preds, train_data,
            and return (grad, hess).

3412
                preds : numpy 1-D array or numpy 2-D array (for multi-class task)
3413
                    The predicted values.
3414
3415
                    Predicted values are returned before any transformation,
                    e.g. they are raw margin instead of probability of positive class for binary task.
3416
3417
                train_data : Dataset
                    The training dataset.
3418
                grad : numpy 1-D array or numpy 2-D array (for multi-class task)
3419
3420
                    The value of the first order derivative (gradient) of the loss
                    with respect to the elements of preds for each sample point.
3421
                hess : numpy 1-D array or numpy 2-D array (for multi-class task)
3422
3423
                    The value of the second order derivative (Hessian) of the loss
                    with respect to the elements of preds for each sample point.
wxchan's avatar
wxchan committed
3424

3425
            For multi-class task, preds are numpy 2-D array of shape = [n_samples, n_classes],
3426
            and grad and hess should be returned in the same format.
3427

wxchan's avatar
wxchan committed
3428
3429
        Returns
        -------
3430
3431
        is_finished : bool
            Whether the update was successfully finished.
wxchan's avatar
wxchan committed
3432
        """
3433
        # need reset training data
3434
3435
3436
3437
3438
3439
        if train_set is None and self.train_set_version != self.train_set.version:
            train_set = self.train_set
            is_the_same_train_set = False
        else:
            is_the_same_train_set = train_set is self.train_set and self.train_set_version == train_set.version
        if train_set is not None and not is_the_same_train_set:
Guolin Ke's avatar
Guolin Ke committed
3440
            if not isinstance(train_set, Dataset):
3441
                raise TypeError(f'Training data should be Dataset instance, met {type(train_set).__name__}')
Guolin Ke's avatar
Guolin Ke committed
3442
            if train_set._predictor is not self.__init_predictor:
3443
3444
                raise LightGBMError("Replace training data failed, "
                                    "you should use same predictor for these data")
wxchan's avatar
wxchan committed
3445
3446
3447
            self.train_set = train_set
            _safe_call(_LIB.LGBM_BoosterResetTrainingData(
                self.handle,
wxchan's avatar
wxchan committed
3448
                self.train_set.construct().handle))
wxchan's avatar
wxchan committed
3449
            self.__inner_predict_buffer[0] = None
3450
            self.train_set_version = self.train_set.version
wxchan's avatar
wxchan committed
3451
3452
        is_finished = ctypes.c_int(0)
        if fobj is None:
3453
            if self.__set_objective_to_none:
3454
                raise LightGBMError('Cannot update due to null objective function.')
wxchan's avatar
wxchan committed
3455
3456
3457
            _safe_call(_LIB.LGBM_BoosterUpdateOneIter(
                self.handle,
                ctypes.byref(is_finished)))
3458
            self.__is_predicted_cur_iter = [False for _ in range(self.__num_dataset)]
wxchan's avatar
wxchan committed
3459
3460
            return is_finished.value == 1
        else:
3461
            if not self.__set_objective_to_none:
Nikita Titov's avatar
Nikita Titov committed
3462
                self.reset_parameter({"objective": "none"}).__set_objective_to_none = True
wxchan's avatar
wxchan committed
3463
3464
3465
            grad, hess = fobj(self.__inner_predict(0), self.train_set)
            return self.__boost(grad, hess)

3466
3467
3468
3469
3470
    def __boost(
        self,
        grad: np.ndarray,
        hess: np.ndarray
    ) -> bool:
3471
        """Boost Booster for one iteration with customized gradient statistics.
Nikita Titov's avatar
Nikita Titov committed
3472

Nikita Titov's avatar
Nikita Titov committed
3473
3474
        .. note::

3475
3476
            Score is returned before any transformation,
            e.g. it is raw margin instead of probability of positive class for binary task.
3477
            For multi-class task, score are numpy 2-D array of shape = [n_samples, n_classes],
3478
            and grad and hess should be returned in the same format.
3479

wxchan's avatar
wxchan committed
3480
3481
        Parameters
        ----------
3482
        grad : numpy 1-D array or numpy 2-D array (for multi-class task)
3483
3484
            The value of the first order derivative (gradient) of the loss
            with respect to the elements of score for each sample point.
3485
        hess : numpy 1-D array or numpy 2-D array (for multi-class task)
3486
3487
            The value of the second order derivative (Hessian) of the loss
            with respect to the elements of score for each sample point.
wxchan's avatar
wxchan committed
3488
3489
3490

        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
3491
3492
        is_finished : bool
            Whether the boost was successfully finished.
wxchan's avatar
wxchan committed
3493
        """
3494
3495
3496
        if self.__num_class > 1:
            grad = grad.ravel(order='F')
            hess = hess.ravel(order='F')
3497
3498
        grad = _list_to_1d_numpy(grad, name='gradient')
        hess = _list_to_1d_numpy(hess, name='hessian')
3499
3500
        assert grad.flags.c_contiguous
        assert hess.flags.c_contiguous
wxchan's avatar
wxchan committed
3501
        if len(grad) != len(hess):
3502
3503
            raise ValueError(f"Lengths of gradient ({len(grad)}) and Hessian ({len(hess)}) don't match")
        num_train_data = self.train_set.num_data()
3504
        if len(grad) != num_train_data * self.__num_class:
3505
3506
3507
            raise ValueError(
                f"Lengths of gradient ({len(grad)}) and Hessian ({len(hess)}) "
                f"don't match training data length ({num_train_data}) * "
3508
                f"number of models per one iteration ({self.__num_class})"
3509
            )
wxchan's avatar
wxchan committed
3510
3511
3512
3513
3514
3515
        is_finished = ctypes.c_int(0)
        _safe_call(_LIB.LGBM_BoosterUpdateOneIterCustom(
            self.handle,
            grad.ctypes.data_as(ctypes.POINTER(ctypes.c_float)),
            hess.ctypes.data_as(ctypes.POINTER(ctypes.c_float)),
            ctypes.byref(is_finished)))
3516
        self.__is_predicted_cur_iter = [False for _ in range(self.__num_dataset)]
wxchan's avatar
wxchan committed
3517
3518
        return is_finished.value == 1

3519
    def rollback_one_iter(self) -> "Booster":
Nikita Titov's avatar
Nikita Titov committed
3520
3521
3522
3523
3524
3525
3526
        """Rollback one iteration.

        Returns
        -------
        self : Booster
            Booster with rolled back one iteration.
        """
wxchan's avatar
wxchan committed
3527
3528
        _safe_call(_LIB.LGBM_BoosterRollbackOneIter(
            self.handle))
3529
        self.__is_predicted_cur_iter = [False for _ in range(self.__num_dataset)]
Nikita Titov's avatar
Nikita Titov committed
3530
        return self
wxchan's avatar
wxchan committed
3531

3532
    def current_iteration(self) -> int:
3533
3534
3535
3536
3537
3538
3539
        """Get the index of the current iteration.

        Returns
        -------
        cur_iter : int
            The index of the current iteration.
        """
Guolin Ke's avatar
Guolin Ke committed
3540
        out_cur_iter = ctypes.c_int(0)
wxchan's avatar
wxchan committed
3541
3542
3543
3544
3545
        _safe_call(_LIB.LGBM_BoosterGetCurrentIteration(
            self.handle,
            ctypes.byref(out_cur_iter)))
        return out_cur_iter.value

3546
    def num_model_per_iteration(self) -> int:
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
        """Get number of models per iteration.

        Returns
        -------
        model_per_iter : int
            The number of models per iteration.
        """
        model_per_iter = ctypes.c_int(0)
        _safe_call(_LIB.LGBM_BoosterNumModelPerIteration(
            self.handle,
            ctypes.byref(model_per_iter)))
        return model_per_iter.value

3560
    def num_trees(self) -> int:
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
        """Get number of weak sub-models.

        Returns
        -------
        num_trees : int
            The number of weak sub-models.
        """
        num_trees = ctypes.c_int(0)
        _safe_call(_LIB.LGBM_BoosterNumberOfTotalModel(
            self.handle,
            ctypes.byref(num_trees)))
        return num_trees.value

3574
    def upper_bound(self) -> float:
3575
3576
3577
3578
        """Get upper bound value of a model.

        Returns
        -------
3579
        upper_bound : float
3580
3581
3582
3583
3584
3585
3586
3587
            Upper bound value of the model.
        """
        ret = ctypes.c_double(0)
        _safe_call(_LIB.LGBM_BoosterGetUpperBoundValue(
            self.handle,
            ctypes.byref(ret)))
        return ret.value

3588
    def lower_bound(self) -> float:
3589
3590
3591
3592
        """Get lower bound value of a model.

        Returns
        -------
3593
        lower_bound : float
3594
3595
3596
3597
3598
3599
3600
3601
            Lower bound value of the model.
        """
        ret = ctypes.c_double(0)
        _safe_call(_LIB.LGBM_BoosterGetLowerBoundValue(
            self.handle,
            ctypes.byref(ret)))
        return ret.value

3602
3603
3604
3605
3606
3607
    def eval(
        self,
        data: Dataset,
        name: str,
        feval: Optional[Union[_LGBM_CustomEvalFunction, List[_LGBM_CustomEvalFunction]]] = None
    ) -> List[_LGBM_BoosterEvalMethodResultType]:
3608
        """Evaluate for data.
wxchan's avatar
wxchan committed
3609
3610
3611

        Parameters
        ----------
3612
3613
        data : Dataset
            Data for the evaluating.
3614
        name : str
3615
            Name of the data.
3616
        feval : callable, list of callable, or None, optional (default=None)
3617
            Customized evaluation function.
3618
            Each evaluation function should accept two parameters: preds, eval_data,
3619
            and return (eval_name, eval_result, is_higher_better) or list of such tuples.
3620

3621
                preds : numpy 1-D array or numpy 2-D array (for multi-class task)
3622
                    The predicted values.
3623
                    For multi-class task, preds are numpy 2-D array of shape = [n_samples, n_classes].
3624
                    If custom objective function is used, predicted values are returned before any transformation,
3625
                    e.g. they are raw margin instead of probability of positive class for binary task in this case.
3626
                eval_data : Dataset
3627
                    A ``Dataset`` to evaluate.
3628
                eval_name : str
Andrew Ziem's avatar
Andrew Ziem committed
3629
                    The name of evaluation function (without whitespace).
3630
3631
3632
3633
3634
                eval_result : float
                    The eval result.
                is_higher_better : bool
                    Is eval result higher better, e.g. AUC is ``is_higher_better``.

wxchan's avatar
wxchan committed
3635
3636
        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
3637
        result : list
3638
            List with (dataset_name, eval_name, eval_result, is_higher_better) tuples.
wxchan's avatar
wxchan committed
3639
        """
Guolin Ke's avatar
Guolin Ke committed
3640
3641
        if not isinstance(data, Dataset):
            raise TypeError("Can only eval for Dataset instance")
wxchan's avatar
wxchan committed
3642
3643
3644
3645
        data_idx = -1
        if data is self.train_set:
            data_idx = 0
        else:
3646
            for i in range(len(self.valid_sets)):
wxchan's avatar
wxchan committed
3647
3648
3649
                if data is self.valid_sets[i]:
                    data_idx = i + 1
                    break
3650
        # need to push new valid data
wxchan's avatar
wxchan committed
3651
3652
3653
3654
3655
3656
        if data_idx == -1:
            self.add_valid(data, name)
            data_idx = self.__num_dataset - 1

        return self.__inner_eval(name, data_idx, feval)

3657
3658
3659
3660
    def eval_train(
        self,
        feval: Optional[Union[_LGBM_CustomEvalFunction, List[_LGBM_CustomEvalFunction]]] = None
    ) -> List[_LGBM_BoosterEvalMethodResultType]:
3661
        """Evaluate for training data.
wxchan's avatar
wxchan committed
3662
3663
3664

        Parameters
        ----------
3665
        feval : callable, list of callable, or None, optional (default=None)
3666
            Customized evaluation function.
3667
            Each evaluation function should accept two parameters: preds, eval_data,
3668
            and return (eval_name, eval_result, is_higher_better) or list of such tuples.
3669

3670
                preds : numpy 1-D array or numpy 2-D array (for multi-class task)
3671
                    The predicted values.
3672
                    For multi-class task, preds are numpy 2-D array of shape = [n_samples, n_classes].
3673
                    If custom objective function is used, predicted values are returned before any transformation,
3674
                    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
3675
                eval_data : Dataset
3676
                    The training dataset.
3677
                eval_name : str
Andrew Ziem's avatar
Andrew Ziem committed
3678
                    The name of evaluation function (without whitespace).
3679
3680
3681
3682
3683
                eval_result : float
                    The eval result.
                is_higher_better : bool
                    Is eval result higher better, e.g. AUC is ``is_higher_better``.

wxchan's avatar
wxchan committed
3684
3685
        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
3686
        result : list
3687
            List with (train_dataset_name, eval_name, eval_result, is_higher_better) tuples.
wxchan's avatar
wxchan committed
3688
        """
3689
        return self.__inner_eval(self._train_data_name, 0, feval)
wxchan's avatar
wxchan committed
3690

3691
3692
3693
3694
    def eval_valid(
        self,
        feval: Optional[Union[_LGBM_CustomEvalFunction, List[_LGBM_CustomEvalFunction]]] = None
    ) -> List[_LGBM_BoosterEvalMethodResultType]:
3695
        """Evaluate for validation data.
wxchan's avatar
wxchan committed
3696
3697
3698

        Parameters
        ----------
3699
        feval : callable, list of callable, or None, optional (default=None)
3700
            Customized evaluation function.
3701
            Each evaluation function should accept two parameters: preds, eval_data,
3702
            and return (eval_name, eval_result, is_higher_better) or list of such tuples.
3703

3704
                preds : numpy 1-D array or numpy 2-D array (for multi-class task)
3705
                    The predicted values.
3706
                    For multi-class task, preds are numpy 2-D array of shape = [n_samples, n_classes].
3707
                    If custom objective function is used, predicted values are returned before any transformation,
3708
                    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
3709
                eval_data : Dataset
3710
                    The validation dataset.
3711
                eval_name : str
Andrew Ziem's avatar
Andrew Ziem committed
3712
                    The name of evaluation function (without whitespace).
3713
3714
3715
3716
3717
                eval_result : float
                    The eval result.
                is_higher_better : bool
                    Is eval result higher better, e.g. AUC is ``is_higher_better``.

wxchan's avatar
wxchan committed
3718
3719
        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
3720
        result : list
3721
            List with (validation_dataset_name, eval_name, eval_result, is_higher_better) tuples.
wxchan's avatar
wxchan committed
3722
        """
3723
        return [item for i in range(1, self.__num_dataset)
wxchan's avatar
wxchan committed
3724
                for item in self.__inner_eval(self.name_valid_sets[i - 1], i, feval)]
wxchan's avatar
wxchan committed
3725

3726
3727
3728
3729
3730
3731
3732
    def save_model(
        self,
        filename: Union[str, Path],
        num_iteration: Optional[int] = None,
        start_iteration: int = 0,
        importance_type: str = 'split'
    ) -> "Booster":
3733
        """Save Booster to file.
wxchan's avatar
wxchan committed
3734
3735
3736

        Parameters
        ----------
3737
        filename : str or pathlib.Path
3738
            Filename to save Booster.
3739
3740
3741
3742
        num_iteration : int or None, optional (default=None)
            Index of the iteration that should be saved.
            If None, if the best iteration exists, it is saved; otherwise, all iterations are saved.
            If <= 0, all iterations are saved.
Nikita Titov's avatar
Nikita Titov committed
3743
        start_iteration : int, optional (default=0)
3744
            Start index of the iteration that should be saved.
3745
        importance_type : str, optional (default="split")
3746
3747
3748
            What type of feature importance should be saved.
            If "split", result contains numbers of times the feature is used in a model.
            If "gain", result contains total gains of splits which use the feature.
Nikita Titov's avatar
Nikita Titov committed
3749
3750
3751
3752
3753

        Returns
        -------
        self : Booster
            Returns self.
wxchan's avatar
wxchan committed
3754
        """
3755
        if num_iteration is None:
3756
            num_iteration = self.best_iteration
3757
        importance_type_int = _FEATURE_IMPORTANCE_TYPE_MAPPER[importance_type]
wxchan's avatar
wxchan committed
3758
3759
        _safe_call(_LIB.LGBM_BoosterSaveModel(
            self.handle,
3760
            ctypes.c_int(start_iteration),
Guolin Ke's avatar
Guolin Ke committed
3761
            ctypes.c_int(num_iteration),
3762
            ctypes.c_int(importance_type_int),
3763
            _c_str(str(filename))))
3764
        _dump_pandas_categorical(self.pandas_categorical, filename)
Nikita Titov's avatar
Nikita Titov committed
3765
        return self
wxchan's avatar
wxchan committed
3766

3767
3768
3769
3770
3771
    def shuffle_models(
        self,
        start_iteration: int = 0,
        end_iteration: int = -1
    ) -> "Booster":
3772
        """Shuffle models.
Nikita Titov's avatar
Nikita Titov committed
3773

3774
3775
3776
        Parameters
        ----------
        start_iteration : int, optional (default=0)
3777
            The first iteration that will be shuffled.
3778
3779
        end_iteration : int, optional (default=-1)
            The last iteration that will be shuffled.
3780
            If <= 0, means the last available iteration.
3781

Nikita Titov's avatar
Nikita Titov committed
3782
3783
3784
3785
        Returns
        -------
        self : Booster
            Booster with shuffled models.
3786
        """
3787
3788
        _safe_call(_LIB.LGBM_BoosterShuffleModels(
            self.handle,
Guolin Ke's avatar
Guolin Ke committed
3789
3790
            ctypes.c_int(start_iteration),
            ctypes.c_int(end_iteration)))
Nikita Titov's avatar
Nikita Titov committed
3791
        return self
3792

3793
    def model_from_string(self, model_str: str) -> "Booster":
3794
3795
3796
3797
        """Load Booster from a string.

        Parameters
        ----------
3798
        model_str : str
3799
3800
3801
3802
            Model will be loaded from this string.

        Returns
        -------
Nikita Titov's avatar
Nikita Titov committed
3803
        self : Booster
3804
3805
            Loaded Booster object.
        """
3806
3807
3808
3809
        if self.handle is not None:
            _safe_call(_LIB.LGBM_BoosterFree(self.handle))
        self._free_buffer()
        self.handle = ctypes.c_void_p()
3810
3811
        out_num_iterations = ctypes.c_int(0)
        _safe_call(_LIB.LGBM_BoosterLoadModelFromString(
3812
            _c_str(model_str),
3813
3814
3815
3816
3817
3818
3819
            ctypes.byref(out_num_iterations),
            ctypes.byref(self.handle)))
        out_num_class = ctypes.c_int(0)
        _safe_call(_LIB.LGBM_BoosterGetNumClasses(
            self.handle,
            ctypes.byref(out_num_class)))
        self.__num_class = out_num_class.value
3820
        self.pandas_categorical = _load_pandas_categorical(model_str=model_str)
3821
3822
        return self

3823
3824
3825
3826
3827
3828
    def model_to_string(
        self,
        num_iteration: Optional[int] = None,
        start_iteration: int = 0,
        importance_type: str = 'split'
    ) -> str:
3829
        """Save Booster to string.
3830

3831
3832
3833
3834
3835
3836
        Parameters
        ----------
        num_iteration : int or None, optional (default=None)
            Index of the iteration that should be saved.
            If None, if the best iteration exists, it is saved; otherwise, all iterations are saved.
            If <= 0, all iterations are saved.
Nikita Titov's avatar
Nikita Titov committed
3837
        start_iteration : int, optional (default=0)
3838
            Start index of the iteration that should be saved.
3839
        importance_type : str, optional (default="split")
3840
3841
3842
            What type of feature importance should be saved.
            If "split", result contains numbers of times the feature is used in a model.
            If "gain", result contains total gains of splits which use the feature.
3843
3844
3845

        Returns
        -------
3846
        str_repr : str
3847
3848
            String representation of Booster.
        """
3849
        if num_iteration is None:
3850
            num_iteration = self.best_iteration
3851
        importance_type_int = _FEATURE_IMPORTANCE_TYPE_MAPPER[importance_type]
3852
        buffer_len = 1 << 20
3853
        tmp_out_len = ctypes.c_int64(0)
3854
3855
3856
3857
        string_buffer = ctypes.create_string_buffer(buffer_len)
        ptr_string_buffer = ctypes.c_char_p(*[ctypes.addressof(string_buffer)])
        _safe_call(_LIB.LGBM_BoosterSaveModelToString(
            self.handle,
3858
            ctypes.c_int(start_iteration),
3859
            ctypes.c_int(num_iteration),
3860
            ctypes.c_int(importance_type_int),
3861
            ctypes.c_int64(buffer_len),
3862
3863
3864
            ctypes.byref(tmp_out_len),
            ptr_string_buffer))
        actual_len = tmp_out_len.value
3865
        # if buffer length is not long enough, re-allocate a buffer
3866
3867
3868
3869
3870
        if actual_len > buffer_len:
            string_buffer = ctypes.create_string_buffer(actual_len)
            ptr_string_buffer = ctypes.c_char_p(*[ctypes.addressof(string_buffer)])
            _safe_call(_LIB.LGBM_BoosterSaveModelToString(
                self.handle,
3871
                ctypes.c_int(start_iteration),
3872
                ctypes.c_int(num_iteration),
3873
                ctypes.c_int(importance_type_int),
3874
                ctypes.c_int64(actual_len),
3875
3876
                ctypes.byref(tmp_out_len),
                ptr_string_buffer))
3877
        ret = string_buffer.value.decode('utf-8')
3878
3879
        ret += _dump_pandas_categorical(self.pandas_categorical)
        return ret
3880

3881
3882
3883
3884
3885
3886
3887
    def dump_model(
        self,
        num_iteration: Optional[int] = None,
        start_iteration: int = 0,
        importance_type: str = 'split',
        object_hook: Optional[Callable[[Dict[str, Any]], Dict[str, Any]]] = None
    ) -> Dict[str, Any]:
Nikita Titov's avatar
Nikita Titov committed
3888
        """Dump Booster to JSON format.
wxchan's avatar
wxchan committed
3889

3890
3891
        Parameters
        ----------
3892
3893
3894
3895
        num_iteration : int or None, optional (default=None)
            Index of the iteration that should be dumped.
            If None, if the best iteration exists, it is dumped; otherwise, all iterations are dumped.
            If <= 0, all iterations are dumped.
Nikita Titov's avatar
Nikita Titov committed
3896
        start_iteration : int, optional (default=0)
3897
            Start index of the iteration that should be dumped.
3898
        importance_type : str, optional (default="split")
3899
3900
3901
            What type of feature importance should be dumped.
            If "split", result contains numbers of times the feature is used in a model.
            If "gain", result contains total gains of splits which use the feature.
3902
3903
3904
3905
3906
3907
3908
3909
3910
        object_hook : callable or None, optional (default=None)
            If not None, ``object_hook`` is a function called while parsing the json
            string returned by the C API. It may be used to alter the json, to store
            specific values while building the json structure. It avoids
            walking through the structure again. It saves a significant amount
            of time if the number of trees is huge.
            Signature is ``def object_hook(node: dict) -> dict``.
            None is equivalent to ``lambda node: node``.
            See documentation of ``json.loads()`` for further details.
3911

wxchan's avatar
wxchan committed
3912
3913
        Returns
        -------
3914
        json_repr : dict
Nikita Titov's avatar
Nikita Titov committed
3915
            JSON format of Booster.
wxchan's avatar
wxchan committed
3916
        """
3917
        if num_iteration is None:
3918
            num_iteration = self.best_iteration
3919
        importance_type_int = _FEATURE_IMPORTANCE_TYPE_MAPPER[importance_type]
wxchan's avatar
wxchan committed
3920
        buffer_len = 1 << 20
3921
        tmp_out_len = ctypes.c_int64(0)
wxchan's avatar
wxchan committed
3922
3923
3924
3925
        string_buffer = ctypes.create_string_buffer(buffer_len)
        ptr_string_buffer = ctypes.c_char_p(*[ctypes.addressof(string_buffer)])
        _safe_call(_LIB.LGBM_BoosterDumpModel(
            self.handle,
3926
            ctypes.c_int(start_iteration),
Guolin Ke's avatar
Guolin Ke committed
3927
            ctypes.c_int(num_iteration),
3928
            ctypes.c_int(importance_type_int),
3929
            ctypes.c_int64(buffer_len),
wxchan's avatar
wxchan committed
3930
            ctypes.byref(tmp_out_len),
Guolin Ke's avatar
Guolin Ke committed
3931
            ptr_string_buffer))
wxchan's avatar
wxchan committed
3932
        actual_len = tmp_out_len.value
3933
        # if buffer length is not long enough, reallocate a buffer
wxchan's avatar
wxchan committed
3934
3935
3936
3937
3938
        if actual_len > buffer_len:
            string_buffer = ctypes.create_string_buffer(actual_len)
            ptr_string_buffer = ctypes.c_char_p(*[ctypes.addressof(string_buffer)])
            _safe_call(_LIB.LGBM_BoosterDumpModel(
                self.handle,
3939
                ctypes.c_int(start_iteration),
Guolin Ke's avatar
Guolin Ke committed
3940
                ctypes.c_int(num_iteration),
3941
                ctypes.c_int(importance_type_int),
3942
                ctypes.c_int64(actual_len),
wxchan's avatar
wxchan committed
3943
                ctypes.byref(tmp_out_len),
Guolin Ke's avatar
Guolin Ke committed
3944
                ptr_string_buffer))
3945
        ret = json.loads(string_buffer.value.decode('utf-8'), object_hook=object_hook)
3946
        ret['pandas_categorical'] = json.loads(json.dumps(self.pandas_categorical,
3947
                                                          default=_json_default_with_numpy))
3948
        return ret
wxchan's avatar
wxchan committed
3949

3950
3951
    def predict(
        self,
3952
        data: _LGBM_PredictDataType,
3953
3954
3955
3956
3957
3958
3959
3960
        start_iteration: int = 0,
        num_iteration: Optional[int] = None,
        raw_score: bool = False,
        pred_leaf: bool = False,
        pred_contrib: bool = False,
        data_has_header: bool = False,
        validate_features: bool = False,
        **kwargs: Any
3961
    ) -> Union[np.ndarray, scipy.sparse.spmatrix, List[scipy.sparse.spmatrix]]:
3962
        """Make a prediction.
wxchan's avatar
wxchan committed
3963
3964
3965

        Parameters
        ----------
3966
        data : str, pathlib.Path, numpy array, pandas DataFrame, H2O DataTable's Frame or scipy.sparse
3967
            Data source for prediction.
3968
            If str or pathlib.Path, it represents the path to a text file (CSV, TSV, or LibSVM).
3969
        start_iteration : int, optional (default=0)
3970
            Start index of the iteration to predict.
3971
            If <= 0, starts from the first iteration.
3972
        num_iteration : int or None, optional (default=None)
3973
3974
3975
3976
            Total number of iterations used in the prediction.
            If None, if the best iteration exists and start_iteration <= 0, the best iteration is used;
            otherwise, all iterations from ``start_iteration`` are used (no limits).
            If <= 0, all iterations from ``start_iteration`` are used (no limits).
3977
3978
3979
3980
        raw_score : bool, optional (default=False)
            Whether to predict raw scores.
        pred_leaf : bool, optional (default=False)
            Whether to predict leaf index.
3981
3982
        pred_contrib : bool, optional (default=False)
            Whether to predict feature contributions.
3983

Nikita Titov's avatar
Nikita Titov committed
3984
3985
3986
3987
3988
3989
3990
            .. note::

                If you want to get more explanations for your model's predictions using SHAP values,
                like SHAP interaction values,
                you can install the shap package (https://github.com/slundberg/shap).
                Note that unlike the shap package, with ``pred_contrib`` we return a matrix with an extra
                column, where the last column is the expected value.
3991

3992
3993
        data_has_header : bool, optional (default=False)
            Whether the data has header.
3994
            Used only if data is str.
3995
3996
3997
        validate_features : bool, optional (default=False)
            If True, ensure that the features used to predict match the ones used to train.
            Used only if data is pandas DataFrame.
3998
3999
        **kwargs
            Other parameters for the prediction.
wxchan's avatar
wxchan committed
4000
4001
4002

        Returns
        -------
4003
        result : numpy array, scipy.sparse or list of scipy.sparse
4004
            Prediction result.
4005
            Can be sparse or a list of sparse objects (each element represents predictions for one class) for feature contributions (when ``pred_contrib=True``).
wxchan's avatar
wxchan committed
4006
        """
4007
        predictor = self._to_predictor(deepcopy(kwargs))
4008
        if num_iteration is None:
4009
            if start_iteration <= 0:
4010
4011
4012
4013
                num_iteration = self.best_iteration
            else:
                num_iteration = -1
        return predictor.predict(data, start_iteration, num_iteration,
4014
                                 raw_score, pred_leaf, pred_contrib,
4015
                                 data_has_header, validate_features)
wxchan's avatar
wxchan committed
4016

4017
4018
4019
4020
    def refit(
        self,
        data,
        label,
4021
4022
        decay_rate: float = 0.9,
        reference: Optional[Dataset] = None,
4023
4024
4025
        weight=None,
        group=None,
        init_score=None,
4026
4027
        feature_name: _LGBM_FeatureNameConfiguration = 'auto',
        categorical_feature: _LGBM_CategoricalFeatureConfiguration = 'auto',
4028
4029
4030
        dataset_params: Optional[Dict[str, Any]] = None,
        free_raw_data: bool = True,
        validate_features: bool = False,
4031
        **kwargs
4032
    ) -> "Booster":
Guolin Ke's avatar
Guolin Ke committed
4033
4034
4035
4036
        """Refit the existing Booster by new data.

        Parameters
        ----------
4037
        data : str, pathlib.Path, numpy array, pandas DataFrame, H2O DataTable's Frame or scipy.sparse
Guolin Ke's avatar
Guolin Ke committed
4038
            Data source for refit.
4039
            If str or pathlib.Path, it represents the path to a text file (CSV, TSV, or LibSVM).
4040
        label : list, numpy 1-D array or pandas Series / one-column DataFrame
Guolin Ke's avatar
Guolin Ke committed
4041
4042
            Label for refit.
        decay_rate : float, optional (default=0.9)
4043
4044
            Decay rate of refit,
            will use ``leaf_output = decay_rate * old_leaf_output + (1.0 - decay_rate) * new_leaf_output`` to refit trees.
4045
4046
4047
        reference : Dataset or None, optional (default=None)
            Reference for ``data``.
        weight : list, numpy 1-D array, pandas Series or None, optional (default=None)
4048
            Weight for each ``data`` instance. Weights should be non-negative.
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
        group : list, numpy 1-D array, pandas Series or None, optional (default=None)
            Group/query size for ``data``.
            Only used in the learning-to-rank task.
            sum(group) = n_samples.
            For example, if you have a 100-document dataset with ``group = [10, 20, 40, 10, 10, 10]``, that means that you have 6 groups,
            where the first 10 records are in the first group, records 11-30 are in the second group, records 31-70 are in the third group, etc.
        init_score : list, list of lists (for multi-class task), numpy array, pandas Series, pandas DataFrame (for multi-class task), or None, optional (default=None)
            Init score for ``data``.
        feature_name : list of str, or 'auto', optional (default="auto")
            Feature names for ``data``.
            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 for ``data``.
            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.
4065
            All values in categorical features will be cast to int32 and thus should be less than int32 max value (2147483647).
4066
4067
4068
            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.
4069
            Floating point numbers in categorical features will be rounded towards 0.
4070
4071
4072
4073
        dataset_params : dict or None, optional (default=None)
            Other parameters for Dataset ``data``.
        free_raw_data : bool, optional (default=True)
            If True, raw data is freed after constructing inner Dataset for ``data``.
4074
4075
4076
        validate_features : bool, optional (default=False)
            If True, ensure that the features used to refit the model match the original ones.
            Used only if data is pandas DataFrame.
4077
4078
        **kwargs
            Other parameters for refit.
4079
            These parameters will be passed to ``predict`` method.
Guolin Ke's avatar
Guolin Ke committed
4080
4081
4082
4083
4084
4085

        Returns
        -------
        result : Booster
            Refitted Booster.
        """
4086
4087
        if self.__set_objective_to_none:
            raise LightGBMError('Cannot refit due to null objective function.')
4088
4089
        if dataset_params is None:
            dataset_params = {}
4090
        predictor = self._to_predictor(deepcopy(kwargs))
4091
        leaf_preds = predictor.predict(data, -1, pred_leaf=True, validate_features=validate_features)
4092
        nrow, ncol = leaf_preds.shape
4093
        out_is_linear = ctypes.c_int(0)
4094
4095
4096
        _safe_call(_LIB.LGBM_BoosterGetLinear(
            self.handle,
            ctypes.byref(out_is_linear)))
Nikita Titov's avatar
Nikita Titov committed
4097
4098
4099
4100
4101
        new_params = _choose_param_value(
            main_param_name="linear_tree",
            params=self.params,
            default_value=None
        )
4102
        new_params["linear_tree"] = bool(out_is_linear.value)
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
        new_params.update(dataset_params)
        train_set = Dataset(
            data=data,
            label=label,
            reference=reference,
            weight=weight,
            group=group,
            init_score=init_score,
            feature_name=feature_name,
            categorical_feature=categorical_feature,
            params=new_params,
            free_raw_data=free_raw_data,
        )
4116
        new_params['refit_decay_rate'] = decay_rate
4117
        new_booster = Booster(new_params, train_set)
Guolin Ke's avatar
Guolin Ke committed
4118
4119
4120
4121
4122
        # Copy models
        _safe_call(_LIB.LGBM_BoosterMerge(
            new_booster.handle,
            predictor.handle))
        leaf_preds = leaf_preds.reshape(-1)
4123
        ptr_data, _, _ = _c_int_array(leaf_preds)
Guolin Ke's avatar
Guolin Ke committed
4124
4125
4126
        _safe_call(_LIB.LGBM_BoosterRefit(
            new_booster.handle,
            ptr_data,
4127
4128
            ctypes.c_int32(nrow),
            ctypes.c_int32(ncol)))
4129
        new_booster._network = self._network
Guolin Ke's avatar
Guolin Ke committed
4130
4131
        return new_booster

4132
    def get_leaf_output(self, tree_id: int, leaf_id: int) -> float:
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
        """Get the output of a leaf.

        Parameters
        ----------
        tree_id : int
            The index of the tree.
        leaf_id : int
            The index of the leaf in the tree.

        Returns
        -------
        result : float
            The output of the leaf.
        """
4147
4148
4149
4150
4151
4152
4153
4154
        ret = ctypes.c_double(0)
        _safe_call(_LIB.LGBM_BoosterGetLeafValue(
            self.handle,
            ctypes.c_int(tree_id),
            ctypes.c_int(leaf_id),
            ctypes.byref(ret)))
        return ret.value

4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
    def set_leaf_output(
        self,
        tree_id: int,
        leaf_id: int,
        value: float,
    ) -> 'Booster':
        """Set the output of a leaf.

        Parameters
        ----------
        tree_id : int
            The index of the tree.
        leaf_id : int
            The index of the leaf in the tree.
        value : float
            Value to set as the output of the leaf.

        Returns
        -------
        self : Booster
            Booster with the leaf output set.
        """
        _safe_call(
            _LIB.LGBM_BoosterSetLeafValue(
                self.handle,
                ctypes.c_int(tree_id),
                ctypes.c_int(leaf_id),
                ctypes.c_double(value)
            )
        )
        return self

4187
4188
4189
4190
    def _to_predictor(
        self,
        pred_parameter: Optional[Dict[str, Any]] = None
    ) -> _InnerPredictor:
4191
        """Convert to predictor."""
4192
        predictor = _InnerPredictor(booster_handle=self.handle, pred_parameter=pred_parameter)
4193
        predictor.pandas_categorical = self.pandas_categorical
wxchan's avatar
wxchan committed
4194
4195
        return predictor

4196
    def num_feature(self) -> int:
4197
4198
4199
4200
4201
4202
4203
        """Get number of features.

        Returns
        -------
        num_feature : int
            The number of features.
        """
4204
4205
4206
4207
4208
4209
        out_num_feature = ctypes.c_int(0)
        _safe_call(_LIB.LGBM_BoosterGetNumFeature(
            self.handle,
            ctypes.byref(out_num_feature)))
        return out_num_feature.value

4210
    def feature_name(self) -> List[str]:
4211
        """Get names of features.
wxchan's avatar
wxchan committed
4212
4213
4214

        Returns
        -------
4215
        result : list of str
4216
            List with names of features.
wxchan's avatar
wxchan committed
4217
        """
4218
        num_feature = self.num_feature()
4219
        # Get name of features
wxchan's avatar
wxchan committed
4220
        tmp_out_len = ctypes.c_int(0)
4221
4222
        reserved_string_buffer_size = 255
        required_string_buffer_size = ctypes.c_size_t(0)
4223
        string_buffers = [ctypes.create_string_buffer(reserved_string_buffer_size) for _ in range(num_feature)]
wxchan's avatar
wxchan committed
4224
4225
4226
        ptr_string_buffers = (ctypes.c_char_p * num_feature)(*map(ctypes.addressof, string_buffers))
        _safe_call(_LIB.LGBM_BoosterGetFeatureNames(
            self.handle,
4227
            ctypes.c_int(num_feature),
wxchan's avatar
wxchan committed
4228
            ctypes.byref(tmp_out_len),
4229
            ctypes.c_size_t(reserved_string_buffer_size),
4230
            ctypes.byref(required_string_buffer_size),
wxchan's avatar
wxchan committed
4231
4232
4233
            ptr_string_buffers))
        if num_feature != tmp_out_len.value:
            raise ValueError("Length of feature names doesn't equal with num_feature")
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
        actual_string_buffer_size = required_string_buffer_size.value
        # if buffer length is not long enough, reallocate buffers
        if reserved_string_buffer_size < actual_string_buffer_size:
            string_buffers = [ctypes.create_string_buffer(actual_string_buffer_size) for _ in range(num_feature)]
            ptr_string_buffers = (ctypes.c_char_p * num_feature)(*map(ctypes.addressof, string_buffers))
            _safe_call(_LIB.LGBM_BoosterGetFeatureNames(
                self.handle,
                ctypes.c_int(num_feature),
                ctypes.byref(tmp_out_len),
                ctypes.c_size_t(actual_string_buffer_size),
                ctypes.byref(required_string_buffer_size),
                ptr_string_buffers))
4246
        return [string_buffers[i].value.decode('utf-8') for i in range(num_feature)]
wxchan's avatar
wxchan committed
4247

4248
4249
4250
4251
4252
    def feature_importance(
        self,
        importance_type: str = 'split',
        iteration: Optional[int] = None
    ) -> np.ndarray:
4253
        """Get feature importances.
4254

4255
4256
        Parameters
        ----------
4257
        importance_type : str, optional (default="split")
4258
4259
4260
            How the importance is calculated.
            If "split", result contains numbers of times the feature is used in a model.
            If "gain", result contains total gains of splits which use the feature.
4261
4262
4263
4264
        iteration : int or None, optional (default=None)
            Limit number of iterations in the feature importance calculation.
            If None, if the best iteration exists, it is used; otherwise, all trees are used.
            If <= 0, all trees are used (no limits).
4265

4266
4267
        Returns
        -------
4268
4269
        result : numpy array
            Array with feature importances.
4270
        """
4271
4272
        if iteration is None:
            iteration = self.best_iteration
4273
        importance_type_int = _FEATURE_IMPORTANCE_TYPE_MAPPER[importance_type]
4274
        result = np.empty(self.num_feature(), dtype=np.float64)
4275
4276
4277
4278
4279
        _safe_call(_LIB.LGBM_BoosterFeatureImportance(
            self.handle,
            ctypes.c_int(iteration),
            ctypes.c_int(importance_type_int),
            result.ctypes.data_as(ctypes.POINTER(ctypes.c_double))))
4280
        if importance_type_int == _C_API_FEATURE_IMPORTANCE_SPLIT:
4281
            return result.astype(np.int32)
4282
4283
        else:
            return result
4284

4285
4286
4287
4288
4289
4290
    def get_split_value_histogram(
        self,
        feature: Union[int, str],
        bins: Optional[Union[int, str]] = None,
        xgboost_style: bool = False
    ) -> Union[Tuple[np.ndarray, np.ndarray], np.ndarray, pd_DataFrame]:
4291
4292
4293
4294
        """Get split value histogram for the specified feature.

        Parameters
        ----------
4295
        feature : int or str
4296
4297
            The feature name or index the histogram is calculated for.
            If int, interpreted as index.
4298
            If str, interpreted as name.
4299

Nikita Titov's avatar
Nikita Titov committed
4300
4301
4302
            .. warning::

                Categorical features are not supported.
4303

4304
        bins : int, str or None, optional (default=None)
4305
4306
4307
            The maximum number of bins.
            If None, or int and > number of unique split values and ``xgboost_style=True``,
            the number of bins equals number of unique split values.
4308
            If str, it should be one from the list of the supported values by ``numpy.histogram()`` function.
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
        xgboost_style : bool, optional (default=False)
            Whether the returned result should be in the same form as it is in XGBoost.
            If False, the returned value is tuple of 2 numpy arrays as it is in ``numpy.histogram()`` function.
            If True, the returned value is matrix, in which the first column is the right edges of non-empty bins
            and the second one is the histogram values.

        Returns
        -------
        result_tuple : tuple of 2 numpy arrays
            If ``xgboost_style=False``, the values of the histogram of used splitting values for the specified feature
            and the bin edges.
        result_array_like : numpy array or pandas DataFrame (if pandas is installed)
            If ``xgboost_style=True``, the histogram of used splitting values for the specified feature.
        """
4323
        def add(root: Dict[str, Any]) -> None:
4324
4325
            """Recursively add thresholds."""
            if 'split_index' in root:  # non-leaf
4326
                if feature_names is not None and isinstance(feature, str):
4327
4328
4329
4330
                    split_feature = feature_names[root['split_feature']]
                else:
                    split_feature = root['split_feature']
                if split_feature == feature:
4331
                    if isinstance(root['threshold'], str):
4332
4333
4334
                        raise LightGBMError('Cannot compute split value histogram for the categorical feature')
                    else:
                        values.append(root['threshold'])
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
                add(root['left_child'])
                add(root['right_child'])

        model = self.dump_model()
        feature_names = model.get('feature_names')
        tree_infos = model['tree_info']
        values = []
        for tree_info in tree_infos:
            add(tree_info['tree_structure'])

4345
        if bins is None or isinstance(bins, int) and xgboost_style:
4346
4347
4348
4349
4350
4351
4352
            n_unique = len(np.unique(values))
            bins = max(min(n_unique, bins) if bins is not None else n_unique, 1)
        hist, bin_edges = np.histogram(values, bins=bins)
        if xgboost_style:
            ret = np.column_stack((bin_edges[1:], hist))
            ret = ret[ret[:, 1] > 0]
            if PANDAS_INSTALLED:
4353
                return pd_DataFrame(ret, columns=['SplitValue', 'Count'])
4354
4355
4356
4357
4358
            else:
                return ret
        else:
            return hist, bin_edges

4359
4360
4361
4362
    def __inner_eval(
        self,
        data_name: str,
        data_idx: int,
4363
        feval: Optional[Union[_LGBM_CustomEvalFunction, List[_LGBM_CustomEvalFunction]]]
4364
    ) -> List[_LGBM_BoosterEvalMethodResultType]:
4365
        """Evaluate training or validation data."""
wxchan's avatar
wxchan committed
4366
        if data_idx >= self.__num_dataset:
4367
            raise ValueError("Data_idx should be smaller than number of dataset")
wxchan's avatar
wxchan committed
4368
4369
4370
        self.__get_eval_info()
        ret = []
        if self.__num_inner_eval > 0:
4371
            result = np.empty(self.__num_inner_eval, dtype=np.float64)
Guolin Ke's avatar
Guolin Ke committed
4372
            tmp_out_len = ctypes.c_int(0)
wxchan's avatar
wxchan committed
4373
4374
            _safe_call(_LIB.LGBM_BoosterGetEval(
                self.handle,
Guolin Ke's avatar
Guolin Ke committed
4375
                ctypes.c_int(data_idx),
wxchan's avatar
wxchan committed
4376
                ctypes.byref(tmp_out_len),
Guolin Ke's avatar
Guolin Ke committed
4377
                result.ctypes.data_as(ctypes.POINTER(ctypes.c_double))))
wxchan's avatar
wxchan committed
4378
            if tmp_out_len.value != self.__num_inner_eval:
4379
                raise ValueError("Wrong length of eval results")
4380
            for i in range(self.__num_inner_eval):
4381
4382
                ret.append((data_name, self.__name_inner_eval[i],
                            result[i], self.__higher_better_inner_eval[i]))
4383
4384
        if callable(feval):
            feval = [feval]
wxchan's avatar
wxchan committed
4385
4386
4387
4388
4389
        if feval is not None:
            if data_idx == 0:
                cur_data = self.train_set
            else:
                cur_data = self.valid_sets[data_idx - 1]
4390
4391
4392
4393
4394
4395
4396
4397
4398
            for eval_function in feval:
                if eval_function is None:
                    continue
                feval_ret = eval_function(self.__inner_predict(data_idx), cur_data)
                if isinstance(feval_ret, list):
                    for eval_name, val, is_higher_better in feval_ret:
                        ret.append((data_name, eval_name, val, is_higher_better))
                else:
                    eval_name, val, is_higher_better = feval_ret
wxchan's avatar
wxchan committed
4399
4400
4401
                    ret.append((data_name, eval_name, val, is_higher_better))
        return ret

4402
    def __inner_predict(self, data_idx: int) -> np.ndarray:
4403
        """Predict for training and validation dataset."""
wxchan's avatar
wxchan committed
4404
        if data_idx >= self.__num_dataset:
4405
            raise ValueError("Data_idx should be smaller than number of dataset")
wxchan's avatar
wxchan committed
4406
4407
4408
4409
4410
        if self.__inner_predict_buffer[data_idx] is None:
            if data_idx == 0:
                n_preds = self.train_set.num_data() * self.__num_class
            else:
                n_preds = self.valid_sets[data_idx - 1].num_data() * self.__num_class
4411
            self.__inner_predict_buffer[data_idx] = np.empty(n_preds, dtype=np.float64)
4412
        # avoid to predict many time in one iteration
wxchan's avatar
wxchan committed
4413
4414
        if not self.__is_predicted_cur_iter[data_idx]:
            tmp_out_len = ctypes.c_int64(0)
Guolin Ke's avatar
Guolin Ke committed
4415
            data_ptr = self.__inner_predict_buffer[data_idx].ctypes.data_as(ctypes.POINTER(ctypes.c_double))
wxchan's avatar
wxchan committed
4416
4417
            _safe_call(_LIB.LGBM_BoosterGetPredict(
                self.handle,
Guolin Ke's avatar
Guolin Ke committed
4418
                ctypes.c_int(data_idx),
wxchan's avatar
wxchan committed
4419
4420
4421
                ctypes.byref(tmp_out_len),
                data_ptr))
            if tmp_out_len.value != len(self.__inner_predict_buffer[data_idx]):
4422
                raise ValueError(f"Wrong length of predict results for data {data_idx}")
wxchan's avatar
wxchan committed
4423
            self.__is_predicted_cur_iter[data_idx] = True
4424
4425
4426
4427
4428
        result = self.__inner_predict_buffer[data_idx]
        if self.__num_class > 1:
            num_data = result.size // self.__num_class
            result = result.reshape(num_data, self.__num_class, order='F')
        return result
wxchan's avatar
wxchan committed
4429

4430
    def __get_eval_info(self) -> None:
4431
        """Get inner evaluation count and names."""
wxchan's avatar
wxchan committed
4432
4433
        if self.__need_reload_eval_info:
            self.__need_reload_eval_info = False
Guolin Ke's avatar
Guolin Ke committed
4434
            out_num_eval = ctypes.c_int(0)
4435
            # Get num of inner evals
wxchan's avatar
wxchan committed
4436
4437
4438
4439
4440
            _safe_call(_LIB.LGBM_BoosterGetEvalCounts(
                self.handle,
                ctypes.byref(out_num_eval)))
            self.__num_inner_eval = out_num_eval.value
            if self.__num_inner_eval > 0:
4441
                # Get name of eval metrics
Guolin Ke's avatar
Guolin Ke committed
4442
                tmp_out_len = ctypes.c_int(0)
4443
4444
4445
                reserved_string_buffer_size = 255
                required_string_buffer_size = ctypes.c_size_t(0)
                string_buffers = [
4446
                    ctypes.create_string_buffer(reserved_string_buffer_size) for _ in range(self.__num_inner_eval)
4447
                ]
wxchan's avatar
wxchan committed
4448
                ptr_string_buffers = (ctypes.c_char_p * self.__num_inner_eval)(*map(ctypes.addressof, string_buffers))
wxchan's avatar
wxchan committed
4449
4450
                _safe_call(_LIB.LGBM_BoosterGetEvalNames(
                    self.handle,
4451
                    ctypes.c_int(self.__num_inner_eval),
wxchan's avatar
wxchan committed
4452
                    ctypes.byref(tmp_out_len),
4453
                    ctypes.c_size_t(reserved_string_buffer_size),
4454
                    ctypes.byref(required_string_buffer_size),
wxchan's avatar
wxchan committed
4455
4456
                    ptr_string_buffers))
                if self.__num_inner_eval != tmp_out_len.value:
4457
                    raise ValueError("Length of eval names doesn't equal with num_evals")
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
                actual_string_buffer_size = required_string_buffer_size.value
                # if buffer length is not long enough, reallocate buffers
                if reserved_string_buffer_size < actual_string_buffer_size:
                    string_buffers = [
                        ctypes.create_string_buffer(actual_string_buffer_size) for _ in range(self.__num_inner_eval)
                    ]
                    ptr_string_buffers = (ctypes.c_char_p * self.__num_inner_eval)(*map(ctypes.addressof, string_buffers))
                    _safe_call(_LIB.LGBM_BoosterGetEvalNames(
                        self.handle,
                        ctypes.c_int(self.__num_inner_eval),
                        ctypes.byref(tmp_out_len),
                        ctypes.c_size_t(actual_string_buffer_size),
                        ctypes.byref(required_string_buffer_size),
                        ptr_string_buffers))
                self.__name_inner_eval = [
                    string_buffers[i].value.decode('utf-8') for i in range(self.__num_inner_eval)
                ]
                self.__higher_better_inner_eval = [
                    name.startswith(('auc', 'ndcg@', 'map@', 'average_precision')) for name in self.__name_inner_eval
                ]