".github/vscode:/vscode.git/clone" did not exist on "81d761133f356ad4ef4d85c696a52c002bcb07de"
c_api.h 49.4 KB
Newer Older
1
/*!
2
3
4
5
6
7
8
9
10
11
 * \file c_api.h
 * \copyright Copyright (c) 2016 Microsoft Corporation. All rights reserved.
 *            Licensed under the MIT License. See LICENSE file in the project root for license information.
 * \note
 * To avoid type conversion on large data, the most of our exposed interface supports both float32 and float64,
 * except the following:
 *   1. gradient and Hessian;
 *   2. current score for training and validation data.
 *   .
 * The reason is that they are called frequently, and the type conversion on them may be time-cost.
12
 */
Guolin Ke's avatar
Guolin Ke committed
13
14
#ifndef LIGHTGBM_C_API_H_
#define LIGHTGBM_C_API_H_
ww's avatar
ww committed
15

16
17
#include <LightGBM/export.h>

18
#include <cstdint>
wxchan's avatar
wxchan committed
19
20
#include <cstring>

21

22
23
typedef void* DatasetHandle;  /*!< \brief Handle of dataset. */
typedef void* BoosterHandle;  /*!< \brief Handle of booster. */
Guolin Ke's avatar
Guolin Ke committed
24

25
26
27
28
#define C_API_DTYPE_FLOAT32 (0)  /*!< \brief float32 (single precision float). */
#define C_API_DTYPE_FLOAT64 (1)  /*!< \brief float64 (double precision float). */
#define C_API_DTYPE_INT32   (2)  /*!< \brief int32. */
#define C_API_DTYPE_INT64   (3)  /*!< \brief int64. */
Guolin Ke's avatar
Guolin Ke committed
29

30
31
32
33
#define C_API_PREDICT_NORMAL     (0)  /*!< \brief Normal prediction, with transform (if needed). */
#define C_API_PREDICT_RAW_SCORE  (1)  /*!< \brief Predict raw score. */
#define C_API_PREDICT_LEAF_INDEX (2)  /*!< \brief Predict leaf index. */
#define C_API_PREDICT_CONTRIB    (3)  /*!< \brief Predict feature contributions (SHAP values). */
34

Guolin Ke's avatar
Guolin Ke committed
35
/*!
36
 * \brief Get string message of the last error.
37
38
 * \return Error information
 */
39
LIGHTGBM_C_EXPORT const char* LGBM_GetLastError();
Guolin Ke's avatar
Guolin Ke committed
40

Guolin Ke's avatar
Guolin Ke committed
41
// --- start Dataset interface
Guolin Ke's avatar
Guolin Ke committed
42
43

/*!
44
45
46
47
48
49
 * \brief Load dataset from file (like LightGBM CLI version does).
 * \param filename The name of the file
 * \param parameters Additional parameters
 * \param reference Used to align bin mapper with other dataset, nullptr means isn't used
 * \param[out] out A loaded dataset
 * \return 0 when succeed, -1 when failure happens
50
 */
51
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromFile(const char* filename,
52
53
54
                                                 const char* parameters,
                                                 const DatasetHandle reference,
                                                 DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
55

56
/*!
57
58
 * \brief Allocate the space for dataset and bucket feature bins according to sampled data.
 * \param sample_data Sampled data, grouped by the column
59
60
61
62
63
64
65
66
 * \param sample_indices Indices of sampled data
 * \param ncol Number of columns
 * \param num_per_col Size of each sampling column
 * \param num_sample_row Number of sampled rows
 * \param num_total_row Number of total rows
 * \param parameters Additional parameters
 * \param[out] out Created dataset
 * \return 0 when succeed, -1 when failure happens
67
 */
68
69
70
71
72
73
74
75
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromSampledColumn(double** sample_data,
                                                          int** sample_indices,
                                                          int32_t ncol,
                                                          const int* num_per_col,
                                                          int32_t num_sample_row,
                                                          int32_t num_total_row,
                                                          const char* parameters,
                                                          DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
76
77

/*!
78
 * \brief Allocate the space for dataset and bucket feature bins according to reference dataset.
79
80
81
82
 * \param reference Used to align bin mapper with other dataset
 * \param num_total_row Number of total rows
 * \param[out] out Created dataset
 * \return 0 when succeed, -1 when failure happens
83
 */
Guolin Ke's avatar
Guolin Ke committed
84
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateByReference(const DatasetHandle reference,
85
86
                                                    int64_t num_total_row,
                                                    DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
87
88

/*!
89
 * \brief Push data to existing dataset, if ``nrow + start_row == num_total_row``, will call ``dataset->FinishLoad``.
90
91
 * \param dataset Handle of dataset
 * \param data Pointer to the data space
92
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
93
94
95
96
 * \param nrow Number of rows
 * \param ncol Number of columns
 * \param start_row Row start index
 * \return 0 when succeed, -1 when failure happens
97
 */
Guolin Ke's avatar
Guolin Ke committed
98
LIGHTGBM_C_EXPORT int LGBM_DatasetPushRows(DatasetHandle dataset,
99
100
101
102
103
                                           const void* data,
                                           int data_type,
                                           int32_t nrow,
                                           int32_t ncol,
                                           int32_t start_row);
Guolin Ke's avatar
Guolin Ke committed
104
105

/*!
106
 * \brief Push data to existing dataset, if ``nrow + start_row == num_total_row``, will call ``dataset->FinishLoad``.
107
108
 * \param dataset Handle of dataset
 * \param indptr Pointer to row headers
109
 * \param indptr_type Type of ``indptr``, can be ``C_API_DTYPE_INT32`` or ``C_API_DTYPE_INT64``
110
111
 * \param indices Pointer to column indices
 * \param data Pointer to the data space
112
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
113
114
115
116
117
 * \param nindptr Number of rows in the matrix + 1
 * \param nelem Number of nonzero elements in the matrix
 * \param num_col Number of columns
 * \param start_row Row start index
 * \return 0 when succeed, -1 when failure happens
118
 */
Guolin Ke's avatar
Guolin Ke committed
119
LIGHTGBM_C_EXPORT int LGBM_DatasetPushRowsByCSR(DatasetHandle dataset,
120
121
122
123
124
125
126
127
128
                                                const void* indptr,
                                                int indptr_type,
                                                const int32_t* indices,
                                                const void* data,
                                                int data_type,
                                                int64_t nindptr,
                                                int64_t nelem,
                                                int64_t num_col,
                                                int64_t start_row);
Guolin Ke's avatar
Guolin Ke committed
129

Guolin Ke's avatar
Guolin Ke committed
130
/*!
131
132
 * \brief Create a dataset from CSR format.
 * \param indptr Pointer to row headers
133
 * \param indptr_type Type of ``indptr``, can be ``C_API_DTYPE_INT32`` or ``C_API_DTYPE_INT64``
134
135
 * \param indices Pointer to column indices
 * \param data Pointer to the data space
136
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
137
138
139
140
141
142
143
 * \param nindptr Number of rows in the matrix + 1
 * \param nelem Number of nonzero elements in the matrix
 * \param num_col Number of columns
 * \param parameters Additional parameters
 * \param reference Used to align bin mapper with other dataset, nullptr means isn't used
 * \param[out] out Created dataset
 * \return 0 when succeed, -1 when failure happens
144
 */
145
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSR(const void* indptr,
146
147
148
149
150
151
152
153
154
155
                                                int indptr_type,
                                                const int32_t* indices,
                                                const void* data,
                                                int data_type,
                                                int64_t nindptr,
                                                int64_t nelem,
                                                int64_t num_col,
                                                const char* parameters,
                                                const DatasetHandle reference,
                                                DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
156

157
/*!
158
 * \brief Create a dataset from CSR format through callbacks.
159
160
 * \param get_row_funptr Pointer to ``std::function<void(int idx, std::vector<std::pair<int, double>>& ret)>``
 *                       (called for every row and expected to clear and fill ``ret``)
161
162
163
164
165
166
 * \param num_rows Number of rows
 * \param num_col Number of columns
 * \param parameters Additional parameters
 * \param reference Used to align bin mapper with other dataset, nullptr means isn't used
 * \param[out] out Created dataset
 * \return 0 when succeed, -1 when failure happens
167
 */
168
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSRFunc(void* get_row_funptr,
169
170
171
172
173
                                                    int num_rows,
                                                    int64_t num_col,
                                                    const char* parameters,
                                                    const DatasetHandle reference,
                                                    DatasetHandle* out);
174

Guolin Ke's avatar
Guolin Ke committed
175
/*!
176
177
 * \brief Create a dataset from CSC format.
 * \param col_ptr Pointer to column headers
178
 * \param col_ptr_type Type of ``col_ptr``, can be ``C_API_DTYPE_INT32`` or ``C_API_DTYPE_INT64``
179
180
 * \param indices Pointer to row indices
 * \param data Pointer to the data space
181
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
182
183
184
185
186
187
188
 * \param ncol_ptr Number of columns in the matrix + 1
 * \param nelem Number of nonzero elements in the matrix
 * \param num_row Number of rows
 * \param parameters Additional parameters
 * \param reference Used to align bin mapper with other dataset, nullptr means isn't used
 * \param[out] out Created dataset
 * \return 0 when succeed, -1 when failure happens
189
 */
190
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSC(const void* col_ptr,
191
192
193
194
195
196
197
198
199
200
                                                int col_ptr_type,
                                                const int32_t* indices,
                                                const void* data,
                                                int data_type,
                                                int64_t ncol_ptr,
                                                int64_t nelem,
                                                int64_t num_row,
                                                const char* parameters,
                                                const DatasetHandle reference,
                                                DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
201
202

/*!
203
204
 * \brief Create dataset from dense matrix.
 * \param data Pointer to the data space
205
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
206
207
208
209
210
211
212
 * \param nrow Number of rows
 * \param ncol Number of columns
 * \param is_row_major 1 for row-major, 0 for column-major
 * \param parameters Additional parameters
 * \param reference Used to align bin mapper with other dataset, nullptr means isn't used
 * \param[out] out Created dataset
 * \return 0 when succeed, -1 when failure happens
213
 */
214
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromMat(const void* data,
215
216
217
218
219
220
221
                                                int data_type,
                                                int32_t nrow,
                                                int32_t ncol,
                                                int is_row_major,
                                                const char* parameters,
                                                const DatasetHandle reference,
                                                DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
222

223
/*!
224
225
226
 * \brief Create dataset from array of dense matrices.
 * \param nmat Number of dense matrices
 * \param data Pointer to the data space
227
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
228
229
230
231
232
233
234
 * \param nrow Number of rows
 * \param ncol Number of columns
 * \param is_row_major 1 for row-major, 0 for column-major
 * \param parameters Additional parameters
 * \param reference Used to align bin mapper with other dataset, nullptr means isn't used
 * \param[out] out Created dataset
 * \return 0 when succeed, -1 when failure happens
235
 */
236
237
238
239
240
241
242
243
244
245
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromMats(int32_t nmat,
                                                 const void** data,
                                                 int data_type,
                                                 int32_t* nrow,
                                                 int32_t ncol,
                                                 int is_row_major,
                                                 const char* parameters,
                                                 const DatasetHandle reference,
                                                 DatasetHandle* out);

wxchan's avatar
wxchan committed
246
/*!
247
248
249
 * \brief Create subset of a data.
 * \param handle Handle of full dataset
 * \param used_row_indices Indices used in subset
250
 * \param num_used_row_indices Length of ``used_row_indices``
251
252
253
 * \param parameters Additional parameters
 * \param[out] out Subset of data
 * \return 0 when succeed, -1 when failure happens
254
 */
255
256
257
258
259
LIGHTGBM_C_EXPORT int LGBM_DatasetGetSubset(const DatasetHandle handle,
                                            const int32_t* used_row_indices,
                                            int32_t num_used_row_indices,
                                            const char* parameters,
                                            DatasetHandle* out);
wxchan's avatar
wxchan committed
260

Guolin Ke's avatar
Guolin Ke committed
261
/*!
262
263
264
265
266
 * \brief Save feature names to dataset.
 * \param handle Handle of dataset
 * \param feature_names Feature names
 * \param num_feature_names Number of feature names
 * \return 0 when succeed, -1 when failure happens
267
 */
268
269
270
LIGHTGBM_C_EXPORT int LGBM_DatasetSetFeatureNames(DatasetHandle handle,
                                                  const char** feature_names,
                                                  int num_feature_names);
Guolin Ke's avatar
Guolin Ke committed
271

272
/*!
273
274
275
276
277
 * \brief Get feature names of dataset.
 * \param handle Handle of dataset
 * \param[out] feature_names Feature names, should pre-allocate memory
 * \param[out] num_feature_names Number of feature names
 * \return 0 when succeed, -1 when failure happens
278
 */
279
280
281
LIGHTGBM_C_EXPORT int LGBM_DatasetGetFeatureNames(DatasetHandle handle,
                                                  char** feature_names,
                                                  int* num_feature_names);
282

Guolin Ke's avatar
Guolin Ke committed
283
/*!
284
285
286
 * \brief Free space for dataset.
 * \param handle Handle of dataset to be freed
 * \return 0 when succeed, -1 when failure happens
287
 */
288
LIGHTGBM_C_EXPORT int LGBM_DatasetFree(DatasetHandle handle);
Guolin Ke's avatar
Guolin Ke committed
289
290

/*!
291
292
 * \brief Save dataset to binary file.
 * \param handle Handle of dataset
293
 * \param filename The name of the file
294
 * \return 0 when succeed, -1 when failure happens
295
 */
296
LIGHTGBM_C_EXPORT int LGBM_DatasetSaveBinary(DatasetHandle handle,
297
                                             const char* filename);
Guolin Ke's avatar
Guolin Ke committed
298

299
/*!
300
301
 * \brief Save dataset to text file, intended for debugging use only.
 * \param handle Handle of dataset
302
 * \param filename The name of the file
303
 * \return 0 when succeed, -1 when failure happens
304
 */
305
306
307
LIGHTGBM_C_EXPORT int LGBM_DatasetDumpText(DatasetHandle handle,
                                           const char* filename);

Guolin Ke's avatar
Guolin Ke committed
308
/*!
309
 * \brief Set vector to a content in info.
310
311
312
 * \note
 * - \a group only works for ``C_API_DTYPE_INT32``;
 * - \a label and \a weight only work for ``C_API_DTYPE_FLOAT32``;
313
 * - \a init_score only works for ``C_API_DTYPE_FLOAT64``.
314
 * \param handle Handle of dataset
315
 * \param field_name Field name, can be \a label, \a weight, \a init_score, \a group
316
 * \param field_data Pointer to data vector
317
 * \param num_element Number of elements in ``field_data``
318
 * \param type Type of ``field_data`` pointer, can be ``C_API_DTYPE_INT32``, ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
319
 * \return 0 when succeed, -1 when failure happens
320
 */
321
LIGHTGBM_C_EXPORT int LGBM_DatasetSetField(DatasetHandle handle,
322
323
324
325
                                           const char* field_name,
                                           const void* field_data,
                                           int num_element,
                                           int type);
Guolin Ke's avatar
Guolin Ke committed
326
327

/*!
328
329
330
331
332
 * \brief Get info vector from dataset.
 * \param handle Handle of dataset
 * \param field_name Field name
 * \param[out] out_len Used to set result length
 * \param[out] out_ptr Pointer to the result
333
 * \param[out] out_type Type of result pointer, can be ``C_API_DTYPE_INT32``, ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
334
 * \return 0 when succeed, -1 when failure happens
335
 */
336
LIGHTGBM_C_EXPORT int LGBM_DatasetGetField(DatasetHandle handle,
337
338
339
340
                                           const char* field_name,
                                           int* out_len,
                                           const void** out_ptr,
                                           int* out_type);
Guolin Ke's avatar
Guolin Ke committed
341

342
/*!
343
344
345
346
 * \brief Raise errors for attempts to update dataset parameters.
 * \param old_parameters Current dataset parameters
 * \param new_parameters New dataset parameters
 * \return 0 when succeed, -1 when failure happens
347
 */
348
349
LIGHTGBM_C_EXPORT int LGBM_DatasetUpdateParamChecking(const char* old_parameters,
                                                      const char* new_parameters);
350

Guolin Ke's avatar
Guolin Ke committed
351
/*!
352
353
354
355
 * \brief Get number of data points.
 * \param handle Handle of dataset
 * \param[out] out The address to hold number of data points
 * \return 0 when succeed, -1 when failure happens
356
 */
357
LIGHTGBM_C_EXPORT int LGBM_DatasetGetNumData(DatasetHandle handle,
358
                                             int* out);
Guolin Ke's avatar
Guolin Ke committed
359
360

/*!
361
362
363
364
 * \brief Get number of features.
 * \param handle Handle of dataset
 * \param[out] out The address to hold number of features
 * \return 0 when succeed, -1 when failure happens
365
 */
366
LIGHTGBM_C_EXPORT int LGBM_DatasetGetNumFeature(DatasetHandle handle,
367
                                                int* out);
Guolin Ke's avatar
Guolin Ke committed
368

369
/*!
370
 * \brief Add features from ``source`` to ``target``.
371
372
373
 * \param target The handle of the dataset to add features to
 * \param source The handle of the dataset to take features from
 * \return 0 when succeed, -1 when failure happens
374
 */
375
376
377
LIGHTGBM_C_EXPORT int LGBM_DatasetAddFeaturesFrom(DatasetHandle target,
                                                  DatasetHandle source);

Guolin Ke's avatar
Guolin Ke committed
378
379
380
// --- start Booster interfaces

/*!
381
382
 * \brief Create a new boosting learner.
 * \param train_data Training dataset
383
 * \param parameters Parameters in format 'key1=value1 key2=value2'
384
 * \param[out] out Handle of created booster
385
386
 * \return 0 when succeed, -1 when failure happens
 */
387
LIGHTGBM_C_EXPORT int LGBM_BoosterCreate(const DatasetHandle train_data,
388
389
                                         const char* parameters,
                                         BoosterHandle* out);
Guolin Ke's avatar
Guolin Ke committed
390
391

/*!
392
393
394
395
396
 * \brief Load an existing booster from model file.
 * \param filename Filename of model
 * \param[out] out_num_iterations Number of iterations of this booster
 * \param[out] out Handle of created booster
 * \return 0 when succeed, -1 when failure happens
397
 */
398
399
400
LIGHTGBM_C_EXPORT int LGBM_BoosterCreateFromModelfile(const char* filename,
                                                      int* out_num_iterations,
                                                      BoosterHandle* out);
Guolin Ke's avatar
Guolin Ke committed
401

402
/*!
403
404
405
406
407
 * \brief Load an existing booster from string.
 * \param model_str Model string
 * \param[out] out_num_iterations Number of iterations of this booster
 * \param[out] out Handle of created booster
 * \return 0 when succeed, -1 when failure happens
408
 */
409
410
411
LIGHTGBM_C_EXPORT int LGBM_BoosterLoadModelFromString(const char* model_str,
                                                      int* out_num_iterations,
                                                      BoosterHandle* out);
wxchan's avatar
wxchan committed
412

Guolin Ke's avatar
Guolin Ke committed
413
/*!
414
415
416
 * \brief Free space for booster.
 * \param handle Handle of booster to be freed
 * \return 0 when succeed, -1 when failure happens
417
 */
418
LIGHTGBM_C_EXPORT int LGBM_BoosterFree(BoosterHandle handle);
Guolin Ke's avatar
Guolin Ke committed
419

420
/*!
421
422
423
424
425
 * \brief Shuffle models.
 * \param handle Handle of booster
 * \param start_iter The first iteration that will be shuffled
 * \param end_iter The last iteration that will be shuffled
 * \return 0 when succeed, -1 when failure happens
426
 */
427
428
429
LIGHTGBM_C_EXPORT int LGBM_BoosterShuffleModels(BoosterHandle handle,
                                                int start_iter,
                                                int end_iter);
430

wxchan's avatar
wxchan committed
431
/*!
432
 * \brief Merge model from ``other_handle`` into ``handle``.
433
434
435
 * \param handle Handle of booster, will merge another booster into this one
 * \param other_handle Other handle of booster
 * \return 0 when succeed, -1 when failure happens
436
 */
437
LIGHTGBM_C_EXPORT int LGBM_BoosterMerge(BoosterHandle handle,
438
                                        BoosterHandle other_handle);
wxchan's avatar
wxchan committed
439
440

/*!
441
442
443
444
 * \brief Add new validation data to booster.
 * \param handle Handle of booster
 * \param valid_data Validation dataset
 * \return 0 when succeed, -1 when failure happens
445
 */
446
LIGHTGBM_C_EXPORT int LGBM_BoosterAddValidData(BoosterHandle handle,
447
                                               const DatasetHandle valid_data);
wxchan's avatar
wxchan committed
448
449

/*!
450
451
452
453
 * \brief Reset training data for booster.
 * \param handle Handle of booster
 * \param train_data Training dataset
 * \return 0 when succeed, -1 when failure happens
454
 */
455
LIGHTGBM_C_EXPORT int LGBM_BoosterResetTrainingData(BoosterHandle handle,
456
                                                    const DatasetHandle train_data);
wxchan's avatar
wxchan committed
457
458

/*!
459
460
 * \brief Reset config for booster.
 * \param handle Handle of booster
461
 * \param parameters Parameters in format 'key1=value1 key2=value2'
462
 * \return 0 when succeed, -1 when failure happens
463
 */
464
465
LIGHTGBM_C_EXPORT int LGBM_BoosterResetParameter(BoosterHandle handle,
                                                 const char* parameters);
wxchan's avatar
wxchan committed
466
467

/*!
468
469
470
471
 * \brief Get number of classes.
 * \param handle Handle of booster
 * \param[out] out_len Number of classes
 * \return 0 when succeed, -1 when failure happens
472
 */
473
474
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumClasses(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
475

Guolin Ke's avatar
Guolin Ke committed
476
/*!
477
478
 * \brief Update the model for one iteration.
 * \param handle Handle of booster
479
 * \param[out] is_finished 1 means the update was successfully finished (cannot split any more), 0 indicates failure
480
 * \return 0 when succeed, -1 when failure happens
481
 */
482
483
LIGHTGBM_C_EXPORT int LGBM_BoosterUpdateOneIter(BoosterHandle handle,
                                                int* is_finished);
Guolin Ke's avatar
Guolin Ke committed
484

Guolin Ke's avatar
Guolin Ke committed
485
/*!
486
487
488
 * \brief Refit the tree model using the new data (online learning).
 * \param handle Handle of booster
 * \param leaf_preds Pointer to predicted leaf indices
489
490
 * \param nrow Number of rows of ``leaf_preds``
 * \param ncol Number of columns of ``leaf_preds``
491
 * \return 0 when succeed, -1 when failure happens
492
 */
493
494
495
496
LIGHTGBM_C_EXPORT int LGBM_BoosterRefit(BoosterHandle handle,
                                        const int32_t* leaf_preds,
                                        int32_t nrow,
                                        int32_t ncol);
Guolin Ke's avatar
Guolin Ke committed
497

Guolin Ke's avatar
Guolin Ke committed
498
/*!
499
500
501
502
503
 * \brief Update the model by specifying gradient and Hessian directly
 *        (this can be used to support customized loss functions).
 * \param handle Handle of booster
 * \param grad The first order derivative (gradient) statistics
 * \param hess The second order derivative (Hessian) statistics
504
 * \param[out] is_finished 1 means the update was successfully finished (cannot split any more), 0 indicates failure
505
 * \return 0 when succeed, -1 when failure happens
506
 */
507
LIGHTGBM_C_EXPORT int LGBM_BoosterUpdateOneIterCustom(BoosterHandle handle,
508
509
510
                                                      const float* grad,
                                                      const float* hess,
                                                      int* is_finished);
Guolin Ke's avatar
Guolin Ke committed
511
512

/*!
513
514
515
 * \brief Rollback one iteration.
 * \param handle Handle of booster
 * \return 0 when succeed, -1 when failure happens
516
 */
517
LIGHTGBM_C_EXPORT int LGBM_BoosterRollbackOneIter(BoosterHandle handle);
wxchan's avatar
wxchan committed
518
519

/*!
520
521
522
523
 * \brief Get index of the current boosting iteration.
 * \param handle Handle of booster
 * \param[out] out_iteration Index of the current boosting iteration
 * \return 0 when succeed, -1 when failure happens
524
 */
525
526
LIGHTGBM_C_EXPORT int LGBM_BoosterGetCurrentIteration(BoosterHandle handle,
                                                      int* out_iteration);
Guolin Ke's avatar
Guolin Ke committed
527

528
/*!
529
530
531
532
 * \brief Get number of trees per iteration.
 * \param handle Handle of booster
 * \param[out] out_tree_per_iteration Number of trees per iteration
 * \return 0 when succeed, -1 when failure happens
533
 */
534
535
LIGHTGBM_C_EXPORT int LGBM_BoosterNumModelPerIteration(BoosterHandle handle,
                                                       int* out_tree_per_iteration);
536
537

/*!
538
539
540
541
 * \brief Get number of weak sub-models.
 * \param handle Handle of booster
 * \param[out] out_models Number of weak sub-models
 * \return 0 when succeed, -1 when failure happens
542
 */
543
544
LIGHTGBM_C_EXPORT int LGBM_BoosterNumberOfTotalModel(BoosterHandle handle,
                                                     int* out_models);
545

Guolin Ke's avatar
Guolin Ke committed
546
/*!
547
548
549
550
 * \brief Get number of evaluation datasets.
 * \param handle Handle of booster
 * \param[out] out_len Total number of evaluation datasets
 * \return 0 when succeed, -1 when failure happens
551
 */
552
553
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEvalCounts(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
554
555

/*!
556
557
558
559
560
 * \brief Get names of evaluation datasets.
 * \param handle Handle of booster
 * \param[out] out_len Total number of evaluation datasets
 * \param[out] out_strs Names of evaluation datasets, should pre-allocate memory
 * \return 0 when succeed, -1 when failure happens
561
 */
562
563
564
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEvalNames(BoosterHandle handle,
                                               int* out_len,
                                               char** out_strs);
wxchan's avatar
wxchan committed
565

wxchan's avatar
wxchan committed
566
/*!
567
568
569
570
571
 * \brief Get names of features.
 * \param handle Handle of booster
 * \param[out] out_len Total number of features
 * \param[out] out_strs Names of features, should pre-allocate memory
 * \return 0 when succeed, -1 when failure happens
572
 */
573
574
575
LIGHTGBM_C_EXPORT int LGBM_BoosterGetFeatureNames(BoosterHandle handle,
                                                  int* out_len,
                                                  char** out_strs);
wxchan's avatar
wxchan committed
576
577

/*!
578
579
580
581
 * \brief Get number of features.
 * \param handle Handle of booster
 * \param[out] out_len Total number of features
 * \return 0 when succeed, -1 when failure happens
582
 */
583
584
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumFeature(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
585

wxchan's avatar
wxchan committed
586
/*!
587
 * \brief Get evaluation for training data and validation data.
588
589
590
 * \note
 *   1. You should call ``LGBM_BoosterGetEvalNames`` first to get the names of evaluation datasets.
 *   2. You should pre-allocate memory for ``out_results``, you can get its length by ``LGBM_BoosterGetEvalCounts``.
591
592
593
 * \param handle Handle of booster
 * \param data_idx Index of data, 0: training data, 1: 1st validation data, 2: 2nd validation data and so on
 * \param[out] out_len Length of output result
594
 * \param[out] out_results Array with evaluation results
595
 * \return 0 when succeed, -1 when failure happens
596
 */
597
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEval(BoosterHandle handle,
598
599
600
                                          int data_idx,
                                          int* out_len,
                                          double* out_results);
Guolin Ke's avatar
Guolin Ke committed
601
602

/*!
603
604
 * \brief Get number of predictions for training data and validation data
 *        (this can be used to support customized evaluation functions).
605
606
607
608
 * \param handle Handle of booster
 * \param data_idx Index of data, 0: training data, 1: 1st validation data, 2: 2nd validation data and so on
 * \param[out] out_len Number of predictions
 * \return 0 when succeed, -1 when failure happens
609
 */
610
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumPredict(BoosterHandle handle,
611
612
                                                int data_idx,
                                                int64_t* out_len);
Guolin Ke's avatar
Guolin Ke committed
613

Guolin Ke's avatar
Guolin Ke committed
614
/*!
615
 * \brief Get prediction for training data and validation data.
616
617
 * \note
 * You should pre-allocate memory for ``out_result``, its length is equal to ``num_class * num_data``.
618
619
620
621
622
 * \param handle Handle of booster
 * \param data_idx Index of data, 0: training data, 1: 1st validation data, 2: 2nd validation data and so on
 * \param[out] out_len Length of output result
 * \param[out] out_result Pointer to array with predictions
 * \return 0 when succeed, -1 when failure happens
623
 */
624
LIGHTGBM_C_EXPORT int LGBM_BoosterGetPredict(BoosterHandle handle,
625
626
627
                                             int data_idx,
                                             int64_t* out_len,
                                             double* out_result);
Guolin Ke's avatar
Guolin Ke committed
628

629
/*!
630
631
632
633
634
 * \brief Make prediction for file.
 * \param handle Handle of booster
 * \param data_filename Filename of file with data
 * \param data_has_header Whether file has header or not
 * \param predict_type What should be predicted
635
636
637
638
 *   - ``C_API_PREDICT_NORMAL``: normal prediction, with transform (if needed);
 *   - ``C_API_PREDICT_RAW_SCORE``: raw score;
 *   - ``C_API_PREDICT_LEAF_INDEX``: leaf index;
 *   - ``C_API_PREDICT_CONTRIB``: feature contributions (SHAP values)
639
 * \param num_iteration Number of iterations for prediction, <= 0 means no limit
640
 * \param parameter Other parameters for prediction, e.g. early stopping for prediction
641
642
 * \param result_filename Filename of result file in which predictions will be written
 * \return 0 when succeed, -1 when failure happens
643
 */
644
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForFile(BoosterHandle handle,
645
646
647
648
                                                 const char* data_filename,
                                                 int data_has_header,
                                                 int predict_type,
                                                 int num_iteration,
649
                                                 const char* parameter,
650
                                                 const char* result_filename);
651

Guolin Ke's avatar
Guolin Ke committed
652
/*!
653
654
655
656
 * \brief Get number of predictions.
 * \param handle Handle of booster
 * \param num_row Number of rows
 * \param predict_type What should be predicted
657
658
659
660
 *   - ``C_API_PREDICT_NORMAL``: normal prediction, with transform (if needed);
 *   - ``C_API_PREDICT_RAW_SCORE``: raw score;
 *   - ``C_API_PREDICT_LEAF_INDEX``: leaf index;
 *   - ``C_API_PREDICT_CONTRIB``: feature contributions (SHAP values)
661
662
663
 * \param num_iteration Number of iterations for prediction, <= 0 means no limit
 * \param[out] out_len Length of prediction
 * \return 0 when succeed, -1 when failure happens
664
 */
665
LIGHTGBM_C_EXPORT int LGBM_BoosterCalcNumPredict(BoosterHandle handle,
666
667
668
669
                                                 int num_row,
                                                 int predict_type,
                                                 int num_iteration,
                                                 int64_t* out_len);
Guolin Ke's avatar
Guolin Ke committed
670

Guolin Ke's avatar
Guolin Ke committed
671
/*!
672
 * \brief Make prediction for a new dataset in CSR format.
673
674
675
676
677
 * \note
 * You should pre-allocate memory for ``out_result``:
 *   - for normal and raw score, its length is equal to ``num_class * num_data``;
 *   - for leaf index, its length is equal to ``num_class * num_data * num_iteration``;
 *   - for feature contributions, its length is equal to ``num_class * num_data * (num_feature + 1)``.
678
679
 * \param handle Handle of booster
 * \param indptr Pointer to row headers
680
 * \param indptr_type Type of ``indptr``, can be ``C_API_DTYPE_INT32`` or ``C_API_DTYPE_INT64``
681
682
 * \param indices Pointer to column indices
 * \param data Pointer to the data space
683
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
684
685
 * \param nindptr Number of rows in the matrix + 1
 * \param nelem Number of nonzero elements in the matrix
686
 * \param num_col Number of columns
687
 * \param predict_type What should be predicted
688
689
690
691
 *   - ``C_API_PREDICT_NORMAL``: normal prediction, with transform (if needed);
 *   - ``C_API_PREDICT_RAW_SCORE``: raw score;
 *   - ``C_API_PREDICT_LEAF_INDEX``: leaf index;
 *   - ``C_API_PREDICT_CONTRIB``: feature contributions (SHAP values)
692
693
694
695
696
 * \param num_iteration Number of iterations for prediction, <= 0 means no limit
 * \param parameter Other parameters for prediction, e.g. early stopping for prediction
 * \param[out] out_len Length of output result
 * \param[out] out_result Pointer to array with predictions
 * \return 0 when succeed, -1 when failure happens
697
 */
698
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSR(BoosterHandle handle,
699
700
701
702
703
704
705
706
707
708
                                                const void* indptr,
                                                int indptr_type,
                                                const int32_t* indices,
                                                const void* data,
                                                int data_type,
                                                int64_t nindptr,
                                                int64_t nelem,
                                                int64_t num_col,
                                                int predict_type,
                                                int num_iteration,
709
                                                const char* parameter,
710
711
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
712

713
/*!
714
 * \brief Make prediction for a new dataset in CSR format. This method re-uses the internal predictor structure
715
 *        from previous calls and is optimized for single row invocation.
716
717
718
719
720
 * \note
 * You should pre-allocate memory for ``out_result``:
 *   - for normal and raw score, its length is equal to ``num_class * num_data``;
 *   - for leaf index, its length is equal to ``num_class * num_data * num_iteration``;
 *   - for feature contributions, its length is equal to ``num_class * num_data * (num_feature + 1)``.
721
722
 * \param handle Handle of booster
 * \param indptr Pointer to row headers
723
 * \param indptr_type Type of ``indptr``, can be ``C_API_DTYPE_INT32`` or ``C_API_DTYPE_INT64``
724
725
 * \param indices Pointer to column indices
 * \param data Pointer to the data space
726
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
727
728
 * \param nindptr Number of rows in the matrix + 1
 * \param nelem Number of nonzero elements in the matrix
729
 * \param num_col Number of columns
730
 * \param predict_type What should be predicted
731
732
733
734
 *   - ``C_API_PREDICT_NORMAL``: normal prediction, with transform (if needed);
 *   - ``C_API_PREDICT_RAW_SCORE``: raw score;
 *   - ``C_API_PREDICT_LEAF_INDEX``: leaf index;
 *   - ``C_API_PREDICT_CONTRIB``: feature contributions (SHAP values)
735
 * \param num_iteration Number of iterations for prediction, <= 0 means no limit
736
 * \param parameter Other parameters for prediction, e.g. early stopping for prediction
737
738
739
 * \param[out] out_len Length of output result
 * \param[out] out_result Pointer to array with predictions
 * \return 0 when succeed, -1 when failure happens
740
 */
741
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSRSingleRow(BoosterHandle handle,
742
743
744
745
746
747
748
749
750
751
752
753
754
                                                         const void* indptr,
                                                         int indptr_type,
                                                         const int32_t* indices,
                                                         const void* data,
                                                         int data_type,
                                                         int64_t nindptr,
                                                         int64_t nelem,
                                                         int64_t num_col,
                                                         int predict_type,
                                                         int num_iteration,
                                                         const char* parameter,
                                                         int64_t* out_len,
                                                         double* out_result);
755

Guolin Ke's avatar
Guolin Ke committed
756
/*!
757
 * \brief Make prediction for a new dataset in CSC format.
758
759
760
761
762
 * \note
 * You should pre-allocate memory for ``out_result``:
 *   - for normal and raw score, its length is equal to ``num_class * num_data``;
 *   - for leaf index, its length is equal to ``num_class * num_data * num_iteration``;
 *   - for feature contributions, its length is equal to ``num_class * num_data * (num_feature + 1)``.
763
764
 * \param handle Handle of booster
 * \param col_ptr Pointer to column headers
765
 * \param col_ptr_type Type of ``col_ptr``, can be ``C_API_DTYPE_INT32`` or ``C_API_DTYPE_INT64``
766
767
 * \param indices Pointer to row indices
 * \param data Pointer to the data space
768
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
769
770
771
772
 * \param ncol_ptr Number of columns in the matrix + 1
 * \param nelem Number of nonzero elements in the matrix
 * \param num_row Number of rows
 * \param predict_type What should be predicted
773
774
775
776
 *   - ``C_API_PREDICT_NORMAL``: normal prediction, with transform (if needed);
 *   - ``C_API_PREDICT_RAW_SCORE``: raw score;
 *   - ``C_API_PREDICT_LEAF_INDEX``: leaf index;
 *   - ``C_API_PREDICT_CONTRIB``: feature contributions (SHAP values)
777
 * \param num_iteration Number of iteration for prediction, <= 0 means no limit
778
 * \param parameter Other parameters for prediction, e.g. early stopping for prediction
779
780
781
 * \param[out] out_len Length of output result
 * \param[out] out_result Pointer to array with predictions
 * \return 0 when succeed, -1 when failure happens
782
 */
783
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSC(BoosterHandle handle,
784
785
786
787
788
789
790
791
792
793
                                                const void* col_ptr,
                                                int col_ptr_type,
                                                const int32_t* indices,
                                                const void* data,
                                                int data_type,
                                                int64_t ncol_ptr,
                                                int64_t nelem,
                                                int64_t num_row,
                                                int predict_type,
                                                int num_iteration,
794
                                                const char* parameter,
795
796
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
797
798

/*!
799
 * \brief Make prediction for a new dataset.
800
801
802
803
804
 * \note
 * You should pre-allocate memory for ``out_result``:
 *   - for normal and raw score, its length is equal to ``num_class * num_data``;
 *   - for leaf index, its length is equal to ``num_class * num_data * num_iteration``;
 *   - for feature contributions, its length is equal to ``num_class * num_data * (num_feature + 1)``.
805
806
 * \param handle Handle of booster
 * \param data Pointer to the data space
807
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
808
809
810
811
 * \param nrow Number of rows
 * \param ncol Number of columns
 * \param is_row_major 1 for row-major, 0 for column-major
 * \param predict_type What should be predicted
812
813
814
815
 *   - ``C_API_PREDICT_NORMAL``: normal prediction, with transform (if needed);
 *   - ``C_API_PREDICT_RAW_SCORE``: raw score;
 *   - ``C_API_PREDICT_LEAF_INDEX``: leaf index;
 *   - ``C_API_PREDICT_CONTRIB``: feature contributions (SHAP values)
816
 * \param num_iteration Number of iteration for prediction, <= 0 means no limit
817
 * \param parameter Other parameters for prediction, e.g. early stopping for prediction
818
819
820
 * \param[out] out_len Length of output result
 * \param[out] out_result Pointer to array with predictions
 * \return 0 when succeed, -1 when failure happens
821
 */
822
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForMat(BoosterHandle handle,
823
824
825
826
827
828
829
                                                const void* data,
                                                int data_type,
                                                int32_t nrow,
                                                int32_t ncol,
                                                int is_row_major,
                                                int predict_type,
                                                int num_iteration,
830
                                                const char* parameter,
831
832
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
833

834
/*!
835
 * \brief Make prediction for a new dataset. This method re-uses the internal predictor structure
836
 *        from previous calls and is optimized for single row invocation.
837
838
839
840
841
 * \note
 * You should pre-allocate memory for ``out_result``:
 *   - for normal and raw score, its length is equal to ``num_class * num_data``;
 *   - for leaf index, its length is equal to ``num_class * num_data * num_iteration``;
 *   - for feature contributions, its length is equal to ``num_class * num_data * (num_feature + 1)``.
842
843
 * \param handle Handle of booster
 * \param data Pointer to the data space
844
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
845
 * \param ncol Number columns
846
 * \param is_row_major 1 for row-major, 0 for column-major
847
 * \param predict_type What should be predicted
848
849
850
851
 *   - ``C_API_PREDICT_NORMAL``: normal prediction, with transform (if needed);
 *   - ``C_API_PREDICT_RAW_SCORE``: raw score;
 *   - ``C_API_PREDICT_LEAF_INDEX``: leaf index;
 *   - ``C_API_PREDICT_CONTRIB``: feature contributions (SHAP values)
852
 * \param num_iteration Number of iteration for prediction, <= 0 means no limit
853
 * \param parameter Other parameters for prediction, e.g. early stopping for prediction
854
855
856
 * \param[out] out_len Length of output result
 * \param[out] out_result Pointer to array with predictions
 * \return 0 when succeed, -1 when failure happens
857
 */
858
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForMatSingleRow(BoosterHandle handle,
859
860
861
862
863
864
865
866
867
                                                         const void* data,
                                                         int data_type,
                                                         int ncol,
                                                         int is_row_major,
                                                         int predict_type,
                                                         int num_iteration,
                                                         const char* parameter,
                                                         int64_t* out_len,
                                                         double* out_result);
868
869
870

/*!
 * \brief Make prediction for a new dataset presented in a form of array of pointers to rows.
871
872
873
874
875
 * \note
 * You should pre-allocate memory for ``out_result``:
 *   - for normal and raw score, its length is equal to ``num_class * num_data``;
 *   - for leaf index, its length is equal to ``num_class * num_data * num_iteration``;
 *   - for feature contributions, its length is equal to ``num_class * num_data * (num_feature + 1)``.
876
877
 * \param handle Handle of booster
 * \param data Pointer to the data space
878
 * \param data_type Type of ``data`` pointer, can be ``C_API_DTYPE_FLOAT32`` or ``C_API_DTYPE_FLOAT64``
879
880
881
 * \param nrow Number of rows
 * \param ncol Number columns
 * \param predict_type What should be predicted
882
883
884
885
 *   - ``C_API_PREDICT_NORMAL``: normal prediction, with transform (if needed);
 *   - ``C_API_PREDICT_RAW_SCORE``: raw score;
 *   - ``C_API_PREDICT_LEAF_INDEX``: leaf index;
 *   - ``C_API_PREDICT_CONTRIB``: feature contributions (SHAP values)
886
 * \param num_iteration Number of iteration for prediction, <= 0 means no limit
887
 * \param parameter Other parameters for prediction, e.g. early stopping for prediction
888
889
890
 * \param[out] out_len Length of output result
 * \param[out] out_result Pointer to array with predictions
 * \return 0 when succeed, -1 when failure happens
891
 */
892
893
894
895
896
897
898
899
900
901
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForMats(BoosterHandle handle,
                                                 const void** data,
                                                 int data_type,
                                                 int32_t nrow,
                                                 int32_t ncol,
                                                 int predict_type,
                                                 int num_iteration,
                                                 const char* parameter,
                                                 int64_t* out_len,
                                                 double* out_result);
902

Guolin Ke's avatar
Guolin Ke committed
903
/*!
904
905
906
907
 * \brief Save model into file.
 * \param handle Handle of booster
 * \param start_iteration Start index of the iteration that should be saved
 * \param num_iteration Index of the iteration that should be saved, <= 0 means save all
908
 * \param filename The name of the file
909
 * \return 0 when succeed, -1 when failure happens
910
 */
911
LIGHTGBM_C_EXPORT int LGBM_BoosterSaveModel(BoosterHandle handle,
912
                                            int start_iteration,
913
914
                                            int num_iteration,
                                            const char* filename);
Guolin Ke's avatar
Guolin Ke committed
915

916
/*!
917
918
919
920
 * \brief Save model to string.
 * \param handle Handle of booster
 * \param start_iteration Start index of the iteration that should be saved
 * \param num_iteration Index of the iteration that should be saved, <= 0 means save all
921
 * \param buffer_len String buffer length, if ``buffer_len < out_len``, you should re-allocate buffer
922
923
924
 * \param[out] out_len Actual output length
 * \param[out] out_str String of model, should pre-allocate memory
 * \return 0 when succeed, -1 when failure happens
925
 */
926
LIGHTGBM_C_EXPORT int LGBM_BoosterSaveModelToString(BoosterHandle handle,
927
                                                    int start_iteration,
928
                                                    int num_iteration,
929
930
                                                    int64_t buffer_len,
                                                    int64_t* out_len,
931
                                                    char* out_str);
932

wxchan's avatar
wxchan committed
933
/*!
934
935
936
 * \brief Dump model to JSON.
 * \param handle Handle of booster
 * \param start_iteration Start index of the iteration that should be dumped
937
938
 * \param num_iteration Index of the iteration that should be dumped, <= 0 means dump all
 * \param buffer_len String buffer length, if ``buffer_len < out_len``, you should re-allocate buffer
939
940
941
 * \param[out] out_len Actual output length
 * \param[out] out_str JSON format string of model, should pre-allocate memory
 * \return 0 when succeed, -1 when failure happens
942
 */
943
LIGHTGBM_C_EXPORT int LGBM_BoosterDumpModel(BoosterHandle handle,
944
                                            int start_iteration,
945
                                            int num_iteration,
946
947
                                            int64_t buffer_len,
                                            int64_t* out_len,
948
                                            char* out_str);
949

Guolin Ke's avatar
Guolin Ke committed
950
/*!
951
952
953
954
955
956
 * \brief Get leaf value.
 * \param handle Handle of booster
 * \param tree_idx Index of tree
 * \param leaf_idx Index of leaf
 * \param[out] out_val Output result from the specified leaf
 * \return 0 when succeed, -1 when failure happens
957
 */
958
LIGHTGBM_C_EXPORT int LGBM_BoosterGetLeafValue(BoosterHandle handle,
959
960
961
                                               int tree_idx,
                                               int leaf_idx,
                                               double* out_val);
Guolin Ke's avatar
Guolin Ke committed
962
963

/*!
964
965
966
967
968
969
 * \brief Set leaf value.
 * \param handle Handle of booster
 * \param tree_idx Index of tree
 * \param leaf_idx Index of leaf
 * \param val Leaf value
 * \return 0 when succeed, -1 when failure happens
970
 */
971
LIGHTGBM_C_EXPORT int LGBM_BoosterSetLeafValue(BoosterHandle handle,
972
973
974
                                               int tree_idx,
                                               int leaf_idx,
                                               double val);
975

976
/*!
977
978
979
980
 * \brief Get model feature importance.
 * \param handle Handle of booster
 * \param num_iteration Number of iterations for which feature importance is calculated, <= 0 means use all
 * \param importance_type Method of importance calculation:
981
982
 *   - 0 for split, result contains numbers of times the feature is used in a model;
 *   - 1 for gain, result contains total gains of splits which use the feature
983
984
 * \param[out] out_results Result array with feature importance
 * \return 0 when succeed, -1 when failure happens
985
 */
986
987
988
989
990
LIGHTGBM_C_EXPORT int LGBM_BoosterFeatureImportance(BoosterHandle handle,
                                                    int num_iteration,
                                                    int importance_type,
                                                    double* out_results);

991
/*!
992
993
994
995
996
997
 * \brief Initialize the network.
 * \param machines List of machines in format 'ip1:port1,ip2:port2'
 * \param local_listen_port TCP listen port for local machines
 * \param listen_time_out Socket time-out in minutes
 * \param num_machines Total number of machines
 * \return 0 when succeed, -1 when failure happens
998
 */
999
1000
1001
1002
1003
1004
LIGHTGBM_C_EXPORT int LGBM_NetworkInit(const char* machines,
                                       int local_listen_port,
                                       int listen_time_out,
                                       int num_machines);

/*!
1005
1006
 * \brief Finalize the network.
 * \return 0 when succeed, -1 when failure happens
1007
 */
1008
1009
LIGHTGBM_C_EXPORT int LGBM_NetworkFree();

1010
1011
1012
1013
1014
1015
1016
/*!
 * \brief Initialize the network with external collective functions.
 * \param num_machines Total number of machines
 * \param rank Rank of local machine
 * \param reduce_scatter_ext_fun The external reduce-scatter function
 * \param allgather_ext_fun The external allgather function
 * \return 0 when succeed, -1 when failure happens
1017
1018
1019
 */
LIGHTGBM_C_EXPORT int LGBM_NetworkInitWithFunctions(int num_machines,
                                                    int rank,
1020
                                                    void* reduce_scatter_ext_fun,
1021
                                                    void* allgather_ext_fun);
1022

Guolin Ke's avatar
Guolin Ke committed
1023
#if defined(_MSC_VER)
1024
#define THREAD_LOCAL __declspec(thread)  /*!< \brief Thread local specifier. */
Guolin Ke's avatar
Guolin Ke committed
1025
#else
1026
#define THREAD_LOCAL thread_local  /*!< \brief Thread local specifier. */
Guolin Ke's avatar
Guolin Ke committed
1027
#endif
1028
1029
1030
1031
1032

/*!
 * \brief Handle of error message.
 * \return Error message
 */
1033
static char* LastErrorMsg() { static THREAD_LOCAL char err_msg[512] = "Everything is fine"; return err_msg; }
1034

1035
#pragma warning(disable : 4996)
1036
1037
1038
1039
/*!
 * \brief Set string message of the last error.
 * \param msg Error message
 */
1040
inline void LGBM_SetLastError(const char* msg) {
wxchan's avatar
wxchan committed
1041
  std::strcpy(LastErrorMsg(), msg);
1042
1043
}

1044
#endif  // LIGHTGBM_C_API_H_