c_api.h 50.4 KB
Newer Older
1
2
3
4
/*!
 * Copyright (c) 2016 Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */
Guolin Ke's avatar
Guolin Ke committed
5
6
#ifndef LIGHTGBM_C_API_H_
#define LIGHTGBM_C_API_H_
ww's avatar
ww committed
7

8
9
#include <LightGBM/export.h>

10
#include <cstdint>
wxchan's avatar
wxchan committed
11
12
#include <cstring>

13
14
15
/*!
* To avoid type conversion on large data, most of our expose interface support both for float_32 and float_64.
* Except following:
wxchan's avatar
wxchan committed
16
* 1. gradients and hessians.
17
* 2. Get current score for training data and validation
wxchan's avatar
wxchan committed
18
* The reason is because they are called frequently, the type-conversion on them maybe time cost.
19
20
*/

Guolin Ke's avatar
typo  
Guolin Ke committed
21
typedef void* DatasetHandle;
Guolin Ke's avatar
Guolin Ke committed
22
23
typedef void* BoosterHandle;

Guolin Ke's avatar
Guolin Ke committed
24
25
26
27
#define C_API_DTYPE_FLOAT32 (0)
#define C_API_DTYPE_FLOAT64 (1)
#define C_API_DTYPE_INT32   (2)
#define C_API_DTYPE_INT64   (3)
28
#define C_API_DTYPE_INT8    (4)
Guolin Ke's avatar
Guolin Ke committed
29
30
31
32

#define C_API_PREDICT_NORMAL     (0)
#define C_API_PREDICT_RAW_SCORE  (1)
#define C_API_PREDICT_LEAF_INDEX (2)
33
#define C_API_PREDICT_CONTRIB    (3)
34

Guolin Ke's avatar
Guolin Ke committed
35
/*!
36
37
38
39
 * \fn LGBM_GetLastError
 * \headerfile <LightGBM/export.h>
 * \brief Get string message of the last error.
 * \return error information
Guolin Ke's avatar
Guolin Ke committed
40
*/
41
LIGHTGBM_C_EXPORT const char* LGBM_GetLastError();
Guolin Ke's avatar
Guolin Ke committed
42

Guolin Ke's avatar
Guolin Ke committed
43
// --- start Dataset interface
Guolin Ke's avatar
Guolin Ke committed
44
45

/*!
46
47
48
49
50
51
52
 * \fn LGBM_DatasetCreateFromFile
 * \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
Guolin Ke's avatar
Guolin Ke committed
53
*/
54
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromFile(const char* filename,
55
56
57
                                                 const char* parameters,
                                                 const DatasetHandle reference,
                                                 DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
58

59
/*!
60
61
62
63
64
65
66
67
68
69
 * \fn LGBM_DatasetCreateFromSampledColumn
 * \brief Create an empty dataset by sampling data.
 * \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
70
*/
71
72
73
74
75
76
77
78
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
79
80

/*!
81
82
83
84
85
86
 * \fn LGBM_DatasetCreateByReference
 * \brief Create an empty dataset by reference Dataset.
 * \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
Guolin Ke's avatar
Guolin Ke committed
87
88
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateByReference(const DatasetHandle reference,
89
90
                                                    int64_t num_total_row,
                                                    DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
91
92

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

/*!
111
112
113
114
115
116
117
118
119
120
121
122
123
 * \fn LGBM_DatasetPushRowsByCSR
 * \brief Push data to existing dataset, if nrow + start_row == num_total_row, will call dataset->FinishLoad.
 * \param dataset Handle of dataset
 * \param indptr Pointer to row headers
 * \param indptr_type Type of indptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
 * \param indices Pointer to column indices
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \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
Guolin Ke's avatar
Guolin Ke committed
124
125
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetPushRowsByCSR(DatasetHandle dataset,
126
127
128
129
130
131
132
133
134
                                                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
135

Guolin Ke's avatar
Guolin Ke committed
136
/*!
137
138
139
140
141
142
143
144
145
146
147
148
149
150
 * \fn LGBM_DatasetCreateFromCSR
 * \brief Create a dataset from CSR format.
 * \param indptr Pointer to row headers
 * \param indptr_type Type of indptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
 * \param indices Pointer to column indices
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \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
Guolin Ke's avatar
Guolin Ke committed
151
*/
152
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSR(const void* indptr,
153
154
155
156
157
158
159
160
161
162
                                                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
163

164
/*!
165
166
167
168
169
170
171
172
173
174
 * \fn LGBM_DatasetCreateFromCSRFunc
 * \brief Create a dataset from CSR format through callbacks.
 * \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)
 * \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
175
176
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSRFunc(void* get_row_funptr,
177
178
179
180
181
                                                    int num_rows,
                                                    int64_t num_col,
                                                    const char* parameters,
                                                    const DatasetHandle reference,
                                                    DatasetHandle* out);
182
183


184

Guolin Ke's avatar
Guolin Ke committed
185
/*!
186
187
188
189
190
191
192
193
194
195
196
197
198
199
 * \fn LGBM_DatasetCreateFromCSC
 * \brief Create a dataset from CSC format.
 * \param col_ptr Pointer to column headers
 * \param col_ptr_type Type of col_ptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
 * \param indices Pointer to row indices
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \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
Guolin Ke's avatar
Guolin Ke committed
200
*/
201
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSC(const void* col_ptr,
202
203
204
205
206
207
208
209
210
211
                                                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
212
213

/*!
214
215
216
217
218
219
220
221
222
223
224
 * \fn LGBM_DatasetCreateFromMat
 * \brief Create dataset from dense matrix.
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \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
Guolin Ke's avatar
Guolin Ke committed
225
*/
226
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromMat(const void* data,
227
228
229
230
231
232
233
                                                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
234

235
/*!
236
237
238
239
240
241
242
243
244
245
246
247
 * \fn LGBM_DatasetCreateFromMats
 * \brief Create dataset from array of dense matrices.
 * \param nmat Number of dense matrices
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \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
248
249
250
251
252
253
254
255
256
257
258
*/
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
259
/*!
260
261
262
263
264
265
266
267
 * \fn LGBM_DatasetGetSubset
 * \brief Create subset of a data.
 * \param handle Handle of full dataset
 * \param used_row_indices Indices used in subset
 * \param num_used_row_indices Len of used_row_indices
 * \param parameters Additional parameters
 * \param[out] out Subset of data
 * \return 0 when succeed, -1 when failure happens
wxchan's avatar
wxchan committed
268
*/
269
270
271
272
273
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
274

Guolin Ke's avatar
Guolin Ke committed
275
/*!
276
277
278
279
280
281
 * \fn LGBM_DatasetSetFeatureNames
 * \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
Guolin Ke's avatar
Guolin Ke committed
282
*/
283
284
285
LIGHTGBM_C_EXPORT int LGBM_DatasetSetFeatureNames(DatasetHandle handle,
                                                  const char** feature_names,
                                                  int num_feature_names);
Guolin Ke's avatar
Guolin Ke committed
286

287
288

/*!
289
290
291
292
293
294
 * \fn LGBM_DatasetGetFeatureNames
 * \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
295
*/
296
297
298
LIGHTGBM_C_EXPORT int LGBM_DatasetGetFeatureNames(DatasetHandle handle,
                                                  char** feature_names,
                                                  int* num_feature_names);
299
300


Guolin Ke's avatar
Guolin Ke committed
301
/*!
302
303
304
305
 * \fn LGBM_DatasetFree
 * \brief Free space for dataset.
 * \param handle Handle of dataset to be freed
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
306
*/
307
LIGHTGBM_C_EXPORT int LGBM_DatasetFree(DatasetHandle handle);
Guolin Ke's avatar
Guolin Ke committed
308
309

/*!
310
311
312
313
314
 * \fn LGBM_DatasetSaveBinary
 * \brief Save dataset to binary file.
 * \param handle Handle of dataset
 * \param filename File name
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
315
*/
316
LIGHTGBM_C_EXPORT int LGBM_DatasetSaveBinary(DatasetHandle handle,
317
                                             const char* filename);
Guolin Ke's avatar
Guolin Ke committed
318

319
/*!
320
321
322
323
324
 * \fn LGBM_DatasetDumpText
 * \brief Save dataset to text file, intended for debugging use only.
 * \param handle Handle of dataset
 * \param filename File name
 * \return 0 when succeed, -1 when failure happens
325
326
327
328
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetDumpText(DatasetHandle handle,
                                           const char* filename);

Guolin Ke's avatar
Guolin Ke committed
329
/*!
330
331
332
333
334
335
336
337
338
339
340
341
 * \fn LGBM_DatasetSetField
 * \brief Set vector to a content in info.
 *        Note: monotone_constraints only works for C_API_DTYPE_INT8,
 *              group only works for C_API_DTYPE_INT32,
 *              label and weight only work for C_API_DTYPE_FLOAT32,
 *              init_score and feature_penalty only work for C_API_DTYPE_FLOAT64.
 * \param handle Handle of dataset
 * \param field_name Field name, can be label, weight, init_score, group, feature_penalty, monotone_constraints
 * \param field_data Pointer to data vector
 * \param num_element Number of elements in field_data
 * \param type Type of data pointer, can be C_API_DTYPE_INT8, C_API_DTYPE_INT32, C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
342
*/
343
LIGHTGBM_C_EXPORT int LGBM_DatasetSetField(DatasetHandle handle,
344
345
346
347
                                           const char* field_name,
                                           const void* field_data,
                                           int num_element,
                                           int type);
Guolin Ke's avatar
Guolin Ke committed
348
349

/*!
350
351
352
353
354
355
356
357
 * \fn LGBM_DatasetGetField
 * \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
 * \param[out] out_type Type of result pointer, can be C_API_DTYPE_INT8, C_API_DTYPE_INT32, C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
358
*/
359
LIGHTGBM_C_EXPORT int LGBM_DatasetGetField(DatasetHandle handle,
360
361
362
363
                                           const char* field_name,
                                           int* out_len,
                                           const void** out_ptr,
                                           int* out_type);
Guolin Ke's avatar
Guolin Ke committed
364

365
/*!
366
367
368
369
 * \fn LGBM_DatasetUpdateParam
 * \brief Update parameters for a dataset.
 * \param handle Handle of dataset
 * \param parameters Parameters
370
*/
371
372
LIGHTGBM_C_EXPORT int LGBM_DatasetUpdateParam(DatasetHandle handle,
                                              const char* parameters);
373

Guolin Ke's avatar
Guolin Ke committed
374
/*!
375
376
377
378
379
 * \fn LGBM_DatasetGetNumData
 * \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
Guolin Ke's avatar
Guolin Ke committed
380
*/
381
LIGHTGBM_C_EXPORT int LGBM_DatasetGetNumData(DatasetHandle handle,
382
                                             int* out);
Guolin Ke's avatar
Guolin Ke committed
383
384

/*!
385
386
387
388
389
 * \fn LGBM_DatasetGetNumFeature
 * \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
Guolin Ke's avatar
Guolin Ke committed
390
*/
391
LIGHTGBM_C_EXPORT int LGBM_DatasetGetNumFeature(DatasetHandle handle,
392
                                                int* out);
Guolin Ke's avatar
Guolin Ke committed
393

394
/*!
395
396
397
398
399
 * \fn LGBM_DatasetAddFeaturesFrom
 * \brief Add features from source to target.
 * \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
400
401
402
403
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetAddFeaturesFrom(DatasetHandle target,
                                                  DatasetHandle source);

Guolin Ke's avatar
Guolin Ke committed
404
405
406
// --- start Booster interfaces

/*!
407
408
409
410
411
 * \fn LGBM_BoosterCreate
 * \brief Create a new boosting learner.
 * \param train_data Training dataset
 * \param parameters Parameters in format: 'key1=value1 key2=value2'
 * \param[out] out Handle of created booster
wxchan's avatar
wxchan committed
412
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
413
*/
414
LIGHTGBM_C_EXPORT int LGBM_BoosterCreate(const DatasetHandle train_data,
415
416
                                         const char* parameters,
                                         BoosterHandle* out);
Guolin Ke's avatar
Guolin Ke committed
417
418

/*!
419
420
421
422
423
424
 * \fn LGBM_BoosterCreateFromModelfile
 * \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
Guolin Ke's avatar
Guolin Ke committed
425
*/
426
427
428
LIGHTGBM_C_EXPORT int LGBM_BoosterCreateFromModelfile(const char* filename,
                                                      int* out_num_iterations,
                                                      BoosterHandle* out);
Guolin Ke's avatar
Guolin Ke committed
429

430
/*!
431
432
433
434
435
436
 * \fn LGBM_BoosterLoadModelFromString
 * \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
437
*/
438
439
440
LIGHTGBM_C_EXPORT int LGBM_BoosterLoadModelFromString(const char* model_str,
                                                      int* out_num_iterations,
                                                      BoosterHandle* out);
wxchan's avatar
wxchan committed
441

Guolin Ke's avatar
Guolin Ke committed
442
/*!
443
444
445
446
 * \fn LGBM_BoosterFree
 * \brief Free space for booster.
 * \param handle Handle of booster to be freed
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
447
*/
448
LIGHTGBM_C_EXPORT int LGBM_BoosterFree(BoosterHandle handle);
Guolin Ke's avatar
Guolin Ke committed
449

450
/*!
451
452
453
454
455
456
 * \fn LGBM_BoosterShuffleModels
 * \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
457
*/
458
459
460
LIGHTGBM_C_EXPORT int LGBM_BoosterShuffleModels(BoosterHandle handle,
                                                int start_iter,
                                                int end_iter);
461

wxchan's avatar
wxchan committed
462
/*!
463
464
465
466
467
 * \fn LGBM_BoosterMerge
 * \brief Merge model from other_handle into handle.
 * \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
wxchan's avatar
wxchan committed
468
*/
469
LIGHTGBM_C_EXPORT int LGBM_BoosterMerge(BoosterHandle handle,
470
                                        BoosterHandle other_handle);
wxchan's avatar
wxchan committed
471
472

/*!
473
474
475
476
477
 * \fn LGBM_BoosterAddValidData
 * \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
wxchan's avatar
wxchan committed
478
*/
479
LIGHTGBM_C_EXPORT int LGBM_BoosterAddValidData(BoosterHandle handle,
480
                                               const DatasetHandle valid_data);
wxchan's avatar
wxchan committed
481
482

/*!
483
484
485
486
487
 * \fn LGBM_BoosterResetTrainingData
 * \brief Reset training data for booster.
 * \param handle Handle of booster
 * \param train_data Training dataset
 * \return 0 when succeed, -1 when failure happens
wxchan's avatar
wxchan committed
488
*/
489
LIGHTGBM_C_EXPORT int LGBM_BoosterResetTrainingData(BoosterHandle handle,
490
                                                    const DatasetHandle train_data);
wxchan's avatar
wxchan committed
491
492

/*!
493
494
495
496
497
 * \fn LGBM_BoosterResetParameter
 * \brief Reset config for booster.
 * \param handle Handle of booster
 * \param parameters Parameters in format: 'key1=value1 key2=value2'
 * \return 0 when succeed, -1 when failure happens
wxchan's avatar
wxchan committed
498
*/
499
500
LIGHTGBM_C_EXPORT int LGBM_BoosterResetParameter(BoosterHandle handle,
                                                 const char* parameters);
wxchan's avatar
wxchan committed
501
502

/*!
503
504
505
506
507
 * \fn LGBM_BoosterGetNumClasses
 * \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
wxchan's avatar
wxchan committed
508
*/
509
510
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumClasses(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
511

Guolin Ke's avatar
Guolin Ke committed
512
/*!
513
514
515
516
517
 * \fn LGBM_BoosterUpdateOneIter
 * \brief Update the model for one iteration.
 * \param handle Handle of booster
 * \param param[out] is_finished 1 means the update was successfully finished (cannot split any more), 0 indicates failure
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
518
*/
519
520
LIGHTGBM_C_EXPORT int LGBM_BoosterUpdateOneIter(BoosterHandle handle,
                                                int* is_finished);
Guolin Ke's avatar
Guolin Ke committed
521

Guolin Ke's avatar
Guolin Ke committed
522
/*!
523
524
525
526
527
528
529
 * \fn LGBM_BoosterRefit
 * \brief Refit the tree model using the new data (online learning).
 * \param handle Handle of booster
 * \param leaf_preds Pointer to predicted leaf indices
 * \param nrow Number of rows of leaf_preds
 * \param ncol Number of columns of leaf_preds
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
530
*/
531
532
533
534
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
535

Guolin Ke's avatar
Guolin Ke committed
536
/*!
537
538
539
540
541
542
543
544
 * \fn LGBM_BoosterUpdateOneIterCustom
 * \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
 * \param param[out] is_finished 1 means the update was successfully finished (cannot split any more), 0 indicates failure
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
545
*/
546
LIGHTGBM_C_EXPORT int LGBM_BoosterUpdateOneIterCustom(BoosterHandle handle,
547
548
549
                                                      const float* grad,
                                                      const float* hess,
                                                      int* is_finished);
Guolin Ke's avatar
Guolin Ke committed
550
551

/*!
552
553
554
555
 * \fn LGBM_BoosterRollbackOneIter
 * \brief Rollback one iteration.
 * \param handle Handle of booster
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
556
*/
557
LIGHTGBM_C_EXPORT int LGBM_BoosterRollbackOneIter(BoosterHandle handle);
wxchan's avatar
wxchan committed
558
559

/*!
560
561
562
563
564
 * \fn LGBM_BoosterGetCurrentIteration
 * \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
wxchan's avatar
wxchan committed
565
*/
566
567
LIGHTGBM_C_EXPORT int LGBM_BoosterGetCurrentIteration(BoosterHandle handle,
                                                      int* out_iteration);
Guolin Ke's avatar
Guolin Ke committed
568

569
/*!
570
571
572
573
574
 * \fn LGBM_BoosterNumModelPerIteration
 * \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
575
*/
576
577
LIGHTGBM_C_EXPORT int LGBM_BoosterNumModelPerIteration(BoosterHandle handle,
                                                       int* out_tree_per_iteration);
578
579

/*!
580
581
582
583
584
 * \fn LGBM_BoosterNumberOfTotalModel
 * \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
585
*/
586
587
LIGHTGBM_C_EXPORT int LGBM_BoosterNumberOfTotalModel(BoosterHandle handle,
                                                     int* out_models);
588

Guolin Ke's avatar
Guolin Ke committed
589
/*!
590
591
592
593
594
 * \fn LGBM_BoosterGetEvalCounts
 * \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
wxchan's avatar
wxchan committed
595
*/
596
597
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEvalCounts(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
598
599

/*!
600
601
602
603
604
605
 * \fn LGBM_BoosterGetEvalNames
 * \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
wxchan's avatar
wxchan committed
606
*/
607
608
609
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEvalNames(BoosterHandle handle,
                                               int* out_len,
                                               char** out_strs);
wxchan's avatar
wxchan committed
610

wxchan's avatar
wxchan committed
611
/*!
612
613
614
615
616
617
 * \fn LGBM_BoosterGetFeatureNames
 * \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
wxchan's avatar
wxchan committed
618
*/
619
620
621
LIGHTGBM_C_EXPORT int LGBM_BoosterGetFeatureNames(BoosterHandle handle,
                                                  int* out_len,
                                                  char** out_strs);
wxchan's avatar
wxchan committed
622
623

/*!
624
625
626
627
628
 * \fn LGBM_BoosterGetNumFeature
 * \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
wxchan's avatar
wxchan committed
629
*/
630
631
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumFeature(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
632

wxchan's avatar
wxchan committed
633
/*!
634
635
636
637
638
639
640
641
642
 * \fn LGBM_BoosterGetEval
 * \brief Get evaluation for training data and validation data.
 *        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.
 * \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 Array with evaluation results
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
643
*/
644
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEval(BoosterHandle handle,
645
646
647
                                          int data_idx,
                                          int* out_len,
                                          double* out_results);
Guolin Ke's avatar
Guolin Ke committed
648
649

/*!
650
651
652
653
654
655
656
 * \fn LGBM_BoosterGetNumPredict
 * \brief Get number of predictions for training data and validation data.
 *        This can be used to support customized evaluation functions.
 * \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
Guolin Ke's avatar
Guolin Ke committed
657
*/
658
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumPredict(BoosterHandle handle,
659
660
                                                int data_idx,
                                                int64_t* out_len);
Guolin Ke's avatar
Guolin Ke committed
661

Guolin Ke's avatar
Guolin Ke committed
662
/*!
663
664
665
666
667
668
669
670
 * \fn LGBM_BoosterGetPredict
 * \brief Get prediction for training data and validation data.
 *        Note: You should pre-allocate memory for out_result, its length is equal to num_class * num_data.
 * \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
Guolin Ke's avatar
Guolin Ke committed
671
*/
672
LIGHTGBM_C_EXPORT int LGBM_BoosterGetPredict(BoosterHandle handle,
673
674
675
                                             int data_idx,
                                             int64_t* out_len,
                                             double* out_result);
Guolin Ke's avatar
Guolin Ke committed
676

677
/*!
678
679
680
681
682
683
684
685
686
687
688
689
690
691
 * \fn LGBM_BoosterPredictForFile
 * \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
 *          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)
 * \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 result_filename Filename of result file in which predictions will be written
 * \return 0 when succeed, -1 when failure happens
692
*/
693
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForFile(BoosterHandle handle,
694
695
696
697
                                                 const char* data_filename,
                                                 int data_has_header,
                                                 int predict_type,
                                                 int num_iteration,
698
                                                 const char* parameter,
699
                                                 const char* result_filename);
700

Guolin Ke's avatar
Guolin Ke committed
701
/*!
702
703
704
705
706
707
708
709
710
711
712
713
 * \fn LGBM_BoosterCalcNumPredict
 * \brief Get number of predictions.
 * \param handle Handle of booster
 * \param num_row Number of rows
 * \param predict_type What should be predicted
 *          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)
 * \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
Guolin Ke's avatar
Guolin Ke committed
714
*/
715
LIGHTGBM_C_EXPORT int LGBM_BoosterCalcNumPredict(BoosterHandle handle,
716
717
718
719
                                                 int num_row,
                                                 int predict_type,
                                                 int num_iteration,
                                                 int64_t* out_len);
Guolin Ke's avatar
Guolin Ke committed
720

Guolin Ke's avatar
Guolin Ke committed
721
/*!
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
 * \fn LGBM_BoosterPredictForCSR
 * \brief Make prediction for a new dataset in CSR format.
 *        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).
 * \param handle Handle of booster
 * \param indptr Pointer to row headers
 * \param indptr_type Type of indptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
 * \param indices Pointer to column indices
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \param nindptr Number of rows in the matrix + 1
 * \param nelem Number of nonzero elements in the matrix
 * \param num_col Number of columns; when it's set to 0, then guess from data
 * \param predict_type What should be predicted
 *          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)
 * \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
Guolin Ke's avatar
Guolin Ke committed
747
*/
748
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSR(BoosterHandle handle,
749
750
751
752
753
754
755
756
757
758
                                                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,
759
                                                const char* parameter,
760
761
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
762

763
/*!
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
 * \fn LGBM_BoosterPredictForCSRSingleRow
 * \brief Make prediction for a new dataset in CSR format. This method re-uses the internal predictor structure 
 *        from previous calls and is optimized for single row invocation.
 *        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).
 * \param handle Handle of booster
 * \param indptr Pointer to row headers
 * \param indptr_type Type of indptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
 * \param indices Pointer to column indices
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \param nindptr Number of rows in the matrix + 1
 * \param nelem Number of nonzero elements in the matrix
 * \param num_col Number of columns; when it's set to 0, then guess from data
 * \param predict_type What should be predicted
 *          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)
 * \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
790
791
*/
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSRSingleRow(BoosterHandle handle,
792
793
794
795
796
797
798
799
800
801
802
803
804
                                                         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);
805
806


Guolin Ke's avatar
Guolin Ke committed
807
/*!
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
 * \fn LGBM_BoosterPredictForCSC
 * \brief Make prediction for a new dataset in CSC format.
 *        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).
 * \param handle Handle of booster
 * \param col_ptr Pointer to column headers
 * \param col_ptr_type Type of col_ptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
 * \param indices Pointer to row indices
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \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
 *          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)
 * \param num_iteration Number of iteration 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
Guolin Ke's avatar
Guolin Ke committed
833
*/
834
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSC(BoosterHandle handle,
835
836
837
838
839
840
841
842
843
844
                                                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,
845
                                                const char* parameter,
846
847
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
848
849

/*!
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
 * \fn LGBM_BoosterPredictForMat
 * \brief Make prediction for a new dataset.
 *        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).
 * \param handle Handle of booster
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \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
 *          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)
 * \param num_iteration Number of iteration 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
Guolin Ke's avatar
Guolin Ke committed
872
*/
873
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForMat(BoosterHandle handle,
874
875
876
877
878
879
880
                                                const void* data,
                                                int data_type,
                                                int32_t nrow,
                                                int32_t ncol,
                                                int is_row_major,
                                                int predict_type,
                                                int num_iteration,
881
                                                const char* parameter,
882
883
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
884

885
/*!
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
 * \fn LGBM_BoosterPredictForMatSingleRow
 * \brief Make prediction for an new dataset. This method re-uses the internal predictor structure 
 *        from previous calls and is optimized for single row invocation.
 *        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).
 * \param handle Handle of booster
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \param ncol Number columns
 * \param is_row_major 1 for row major, 0 for column major
 * \param predict_type What should be predicted
 *          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)
 * \param num_iteration Number of iteration 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
*/
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForMatSingleRow(BoosterHandle handle,
                                                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);

/*!
 * \fn LGBM_BoosterPredictForMats
 * \brief Make prediction for a new dataset presented in a form of array of pointers to rows.
 *        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).
 * \param handle Handle of booster
 * \param data Pointer to the data space
 * \param data_type Type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
 * \param nrow Number of rows
 * \param ncol Number columns
 * \param predict_type What should be predicted
 *          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)
 * \param num_iteration Number of iteration 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
942
943
944
945
946
947
948
949
950
951
952
*/
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);
953

Guolin Ke's avatar
Guolin Ke committed
954
/*!
955
956
957
958
959
960
961
 * \fn LGBM_BoosterSaveModel
 * \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
 * \param filename File name
 * \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
962
*/
963
LIGHTGBM_C_EXPORT int LGBM_BoosterSaveModel(BoosterHandle handle,
964
                                            int start_iteration,
965
966
                                            int num_iteration,
                                            const char* filename);
Guolin Ke's avatar
Guolin Ke committed
967

968
/*!
969
970
971
972
973
974
975
976
977
 * \fn LGBM_BoosterSaveModelToString
 * \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
 * \param buffer_len String buffer length, if buffer_len < out_len, you should re-allocate buffer
 * \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
978
979
*/
LIGHTGBM_C_EXPORT int LGBM_BoosterSaveModelToString(BoosterHandle handle,
980
                                                    int start_iteration,
981
                                                    int num_iteration,
982
983
                                                    int64_t buffer_len,
                                                    int64_t* out_len,
984
                                                    char* out_str);
985

wxchan's avatar
wxchan committed
986
/*!
987
988
989
990
991
992
993
994
995
 * \fn LGBM_BoosterDumpModel
 * \brief Dump model to JSON.
 * \param handle Handle of booster
 * \param start_iteration Start index of the iteration that should be dumped
 * \param num_iteration Index of the iteration that should be dumped, <= 0 means save all
 * \param buffer_len String buffer length, if buffer_len < out_len, you should re-allocate buffer
 * \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
wxchan's avatar
wxchan committed
996
*/
997
LIGHTGBM_C_EXPORT int LGBM_BoosterDumpModel(BoosterHandle handle,
998
                                            int start_iteration,
999
                                            int num_iteration,
1000
1001
                                            int64_t buffer_len,
                                            int64_t* out_len,
1002
                                            char* out_str);
1003

Guolin Ke's avatar
Guolin Ke committed
1004
/*!
1005
1006
1007
1008
1009
1010
1011
 * \fn LGBM_BoosterGetLeafValue
 * \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
Guolin Ke's avatar
Guolin Ke committed
1012
*/
1013
LIGHTGBM_C_EXPORT int LGBM_BoosterGetLeafValue(BoosterHandle handle,
1014
1015
1016
                                               int tree_idx,
                                               int leaf_idx,
                                               double* out_val);
Guolin Ke's avatar
Guolin Ke committed
1017
1018

/*!
1019
1020
1021
1022
1023
1024
1025
 * \fn LGBM_BoosterSetLeafValue
 * \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
Guolin Ke's avatar
Guolin Ke committed
1026
*/
1027
LIGHTGBM_C_EXPORT int LGBM_BoosterSetLeafValue(BoosterHandle handle,
1028
1029
1030
                                               int tree_idx,
                                               int leaf_idx,
                                               double val);
1031

1032
/*!
1033
1034
1035
1036
1037
1038
1039
1040
1041
 * \fn LGBM_BoosterFeatureImportance
 * \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:
 *          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
 * \param[out] out_results Result array with feature importance
 * \return 0 when succeed, -1 when failure happens
1042
1043
1044
1045
1046
1047
*/
LIGHTGBM_C_EXPORT int LGBM_BoosterFeatureImportance(BoosterHandle handle,
                                                    int num_iteration,
                                                    int importance_type,
                                                    double* out_results);

1048
/*!
1049
1050
1051
1052
1053
1054
1055
 * \fn LGBM_NetworkInit
 * \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
1056
1057
1058
1059
1060
1061
1062
*/
LIGHTGBM_C_EXPORT int LGBM_NetworkInit(const char* machines,
                                       int local_listen_port,
                                       int listen_time_out,
                                       int num_machines);

/*!
1063
1064
1065
 * \fn LGBM_NetworkFree
 * \brief Finalize the network.
 * \return 0 when succeed, -1 when failure happens
1066
1067
1068
*/
LIGHTGBM_C_EXPORT int LGBM_NetworkFree();

1069
1070
1071
1072
1073
1074
1075
1076
1077
1078

/*!
 * \fn LGBM_NetworkInitWithFunctions
 * \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
*/
1079
1080
LIGHTGBM_C_EXPORT int LGBM_NetworkInitWithFunctions(int num_machines, int rank,
                                                    void* reduce_scatter_ext_fun,
1081
                                                    void* allgather_ext_fun);
1082

Guolin Ke's avatar
Guolin Ke committed
1083
1084

#if defined(_MSC_VER)
1085
#define THREAD_LOCAL __declspec(thread)
Guolin Ke's avatar
Guolin Ke committed
1086
1087
1088
#else
#define THREAD_LOCAL thread_local
#endif
1089
// exception handle and error msg
1090
static char* LastErrorMsg() { static THREAD_LOCAL char err_msg[512] = "Everything is fine"; return err_msg; }
1091

1092
#pragma warning(disable : 4996)
1093
inline void LGBM_SetLastError(const char* msg) {
wxchan's avatar
wxchan committed
1094
  std::strcpy(LastErrorMsg(), msg);
1095
1096
}

1097
#endif  // LIGHTGBM_C_API_H_