c_api.h 44.2 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
/*!
* \brief get string message of the last error
wxchan's avatar
wxchan committed
37
*  all function in this file will return 0 when succeed
Guolin Ke's avatar
Guolin Ke committed
38
39
40
*  and -1 when an error occured,
* \return const char* error inforomation
*/
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

/*!
* \brief load data set from file like the command_line LightGBM do
* \param filename the name of the file
Guolin Ke's avatar
Guolin Ke committed
48
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
49
50
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out a loaded dataset
wxchan's avatar
wxchan committed
51
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
52
*/
53
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromFile(const char* filename,
54
55
56
                                                 const char* parameters,
                                                 const DatasetHandle reference,
                                                 DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
57

58
/*!
59
60
* \brief create a empty dataset by sampling data.
* \param sample_data sampled data, grouped by the column.
61
* \param sample_indices indices of sampled data.
62
* \param ncol number columns
63
64
* \param num_per_col Size of each sampling column
* \param num_sample_row Number of sampled rows
65
66
67
68
69
* \param num_total_row number of total rows
* \param parameters additional parameters
* \param out created dataset
* \return 0 when succeed, -1 when failure happens
*/
70
71
72
73
74
75
76
77
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
78
79
80
81
82
83
84
85
86

/*!
* \brief create a empty dataset by reference Dataset
* \param reference used to align bin mapper
* \param num_total_row number of total rows
* \param out created dataset
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateByReference(const DatasetHandle reference,
87
88
                                                    int64_t num_total_row,
                                                    DatasetHandle* out);
Guolin Ke's avatar
Guolin Ke committed
89
90
91
92
93
94
95
96
97
98
99
100

/*!
* \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 columns
* \param start_row row start index
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetPushRows(DatasetHandle dataset,
101
102
103
104
105
                                           const void* data,
                                           int data_type,
                                           int32_t nrow,
                                           int32_t ncol,
                                           int32_t start_row);
Guolin Ke's avatar
Guolin Ke committed
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121

/*!
* \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 findex
* \param data fvalue
* \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
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetPushRowsByCSR(DatasetHandle dataset,
122
123
124
125
126
127
128
129
130
                                                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
131

Guolin Ke's avatar
Guolin Ke committed
132
133
134
/*!
* \brief create a dataset from CSR format
* \param indptr pointer to row headers
wxchan's avatar
wxchan committed
135
* \param indptr_type type of indptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
Guolin Ke's avatar
Guolin Ke committed
136
137
* \param indices findex
* \param data fvalue
wxchan's avatar
wxchan committed
138
* \param data_type type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
Guolin Ke's avatar
Guolin Ke committed
139
* \param nindptr number of rows in the matrix + 1
Guolin Ke's avatar
Guolin Ke committed
140
* \param nelem number of nonzero elements in the matrix
wxchan's avatar
wxchan committed
141
* \param num_col number of columns
Guolin Ke's avatar
Guolin Ke committed
142
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
143
144
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out created dataset
wxchan's avatar
wxchan committed
145
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
146
*/
147
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSR(const void* indptr,
148
149
150
151
152
153
154
155
156
157
                                                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
158

159
160
161
162
163
164
165
166
167
168
169
170

/*!
* \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 don't used
* \param out created dataset
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSRFunc(void* get_row_funptr,
171
172
173
174
175
                                                    int num_rows,
                                                    int64_t num_col,
                                                    const char* parameters,
                                                    const DatasetHandle reference,
                                                    DatasetHandle* out);
176
177


Guolin Ke's avatar
Guolin Ke committed
178
179
180
/*!
* \brief create a dataset from CSC format
* \param col_ptr pointer to col headers
wxchan's avatar
wxchan committed
181
* \param col_ptr_type type of col_ptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
Guolin Ke's avatar
Guolin Ke committed
182
183
* \param indices findex
* \param data fvalue
wxchan's avatar
wxchan committed
184
185
* \param data_type type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
* \param ncol_ptr number of cols in the matrix + 1
Guolin Ke's avatar
Guolin Ke committed
186
* \param nelem number of nonzero elements in the matrix
wxchan's avatar
wxchan committed
187
* \param num_row number of rows
Guolin Ke's avatar
Guolin Ke committed
188
189
190
* \param parameters additional parameters
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out created dataset
wxchan's avatar
wxchan committed
191
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
192
*/
193
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromCSC(const void* col_ptr,
194
195
196
197
198
199
200
201
202
203
                                                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
204
205
206
207

/*!
* \brief create dataset from dense matrix
* \param data pointer to the data space
wxchan's avatar
wxchan committed
208
* \param data_type type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
Guolin Ke's avatar
Guolin Ke committed
209
210
* \param nrow number of rows
* \param ncol number columns
211
* \param is_row_major 1 for row major, 0 for column major
Guolin Ke's avatar
Guolin Ke committed
212
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
213
214
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out created dataset
wxchan's avatar
wxchan committed
215
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
216
*/
217
LIGHTGBM_C_EXPORT int LGBM_DatasetCreateFromMat(const void* data,
218
219
220
221
222
223
224
                                                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
225

226
227
/*!
* \brief create dataset from array of dense matrices
228
* \param nmat number of matrices
229
230
231
232
* \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
233
* \param is_row_major 1 for row major, 0 for column major
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
* \param parameters additional parameters
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out created dataset
* \return 0 when succeed, -1 when failure happens
*/
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
249
250
251
252
253
254
255
256
257
/*!
* \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 subset of data
* \return 0 when succeed, -1 when failure happens
*/
258
259
260
261
262
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
263

Guolin Ke's avatar
Guolin Ke committed
264
265
266
267
268
269
270
/*!
* \brief save feature names to Dataset
* \param handle handle
* \param feature_names feature names
* \param num_feature_names number of feature names
* \return 0 when succeed, -1 when failure happens
*/
271
272
273
LIGHTGBM_C_EXPORT int LGBM_DatasetSetFeatureNames(DatasetHandle handle,
                                                  const char** feature_names,
                                                  int num_feature_names);
Guolin Ke's avatar
Guolin Ke committed
274

275
276
277
278
279
280
281
282

/*!
* \brief get feature names of Dataset
* \param handle handle
* \param feature_names feature names, should pre-allocate memory
* \param num_feature_names number of feature names
* \return 0 when succeed, -1 when failure happens
*/
283
284
285
LIGHTGBM_C_EXPORT int LGBM_DatasetGetFeatureNames(DatasetHandle handle,
                                                  char** feature_names,
                                                  int* num_feature_names);
286
287


Guolin Ke's avatar
Guolin Ke committed
288
289
/*!
* \brief free space for dataset
wxchan's avatar
wxchan committed
290
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
291
*/
292
LIGHTGBM_C_EXPORT int LGBM_DatasetFree(DatasetHandle handle);
Guolin Ke's avatar
Guolin Ke committed
293
294

/*!
295
* \brief save dataset to binary file
Guolin Ke's avatar
Guolin Ke committed
296
297
* \param handle a instance of dataset
* \param filename file name
wxchan's avatar
wxchan committed
298
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
299
*/
300
LIGHTGBM_C_EXPORT int LGBM_DatasetSaveBinary(DatasetHandle handle,
301
                                             const char* filename);
Guolin Ke's avatar
Guolin Ke committed
302

303
304
305
306
307
308
309
310
311
/*!
* \brief save dataset to text file, intended for debugging use only
* \param handle a instance of dataset
* \param filename file name
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetDumpText(DatasetHandle handle,
                                           const char* filename);

Guolin Ke's avatar
Guolin Ke committed
312
313
/*!
* \brief set vector to a content in info
wxchan's avatar
wxchan committed
314
315
*        Note: group and group only work for C_API_DTYPE_INT32
*              label and weight only work for C_API_DTYPE_FLOAT32
Guolin Ke's avatar
Guolin Ke committed
316
* \param handle a instance of dataset
wxchan's avatar
wxchan committed
317
* \param field_name field name, can be label, weight, group, group_id
318
* \param field_data pointer to vector
Guolin Ke's avatar
Guolin Ke committed
319
* \param num_element number of element in field_data
wxchan's avatar
wxchan committed
320
321
* \param type C_API_DTYPE_FLOAT32 or C_API_DTYPE_INT32
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
322
*/
323
LIGHTGBM_C_EXPORT int LGBM_DatasetSetField(DatasetHandle handle,
324
325
326
327
                                           const char* field_name,
                                           const void* field_data,
                                           int num_element,
                                           int type);
Guolin Ke's avatar
Guolin Ke committed
328
329

/*!
330
* \brief get info vector from dataset
Guolin Ke's avatar
Guolin Ke committed
331
332
333
334
* \param handle a instance of data matrix
* \param field_name field name
* \param out_len used to set result length
* \param out_ptr pointer to the result
wxchan's avatar
wxchan committed
335
336
* \param out_type  C_API_DTYPE_FLOAT32 or C_API_DTYPE_INT32
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
337
*/
338
LIGHTGBM_C_EXPORT int LGBM_DatasetGetField(DatasetHandle handle,
339
340
341
342
                                           const char* field_name,
                                           int* out_len,
                                           const void** out_ptr,
                                           int* out_type);
Guolin Ke's avatar
Guolin Ke committed
343

344
345
346
347
348
349

/*!
* \brief Update parameters for a Dataset
* \param handle a instance of data matrix
* \param parameters parameters
*/
350
351
LIGHTGBM_C_EXPORT int LGBM_DatasetUpdateParam(DatasetHandle handle,
                                              const char* parameters);
352

Guolin Ke's avatar
Guolin Ke committed
353
354
355
356
/*!
* \brief get number of data.
* \param handle the handle to the dataset
* \param out The address to hold number of data
wxchan's avatar
wxchan committed
357
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
358
*/
359
LIGHTGBM_C_EXPORT int LGBM_DatasetGetNumData(DatasetHandle handle,
360
                                             int* out);
Guolin Ke's avatar
Guolin Ke committed
361
362
363
364
365

/*!
* \brief get number of features
* \param handle the handle to the dataset
* \param out The output of number of features
wxchan's avatar
wxchan committed
366
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
367
*/
368
LIGHTGBM_C_EXPORT int LGBM_DatasetGetNumFeature(DatasetHandle handle,
369
                                                int* out);
Guolin Ke's avatar
Guolin Ke committed
370

371
372
373
374
375
376
377
378
379
/*!
* \brief Add features from source to target, then free source
* \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
*/
LIGHTGBM_C_EXPORT int LGBM_DatasetAddFeaturesFrom(DatasetHandle target,
                                                  DatasetHandle source);

Guolin Ke's avatar
Guolin Ke committed
380
381
382
383
// --- start Booster interfaces

/*!
* \brief create an new boosting learner
Guolin Ke's avatar
Guolin Ke committed
384
* \param train_data training data set
Guolin Ke's avatar
Guolin Ke committed
385
* \param parameters format: 'key1=value1 key2=value2'
386
* \param out handle of created Booster
wxchan's avatar
wxchan committed
387
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
388
*/
389
LIGHTGBM_C_EXPORT int LGBM_BoosterCreate(const DatasetHandle train_data,
390
391
                                         const char* parameters,
                                         BoosterHandle* out);
Guolin Ke's avatar
Guolin Ke committed
392
393

/*!
Guolin Ke's avatar
Guolin Ke committed
394
* \brief load an existing boosting from model file
Guolin Ke's avatar
Guolin Ke committed
395
* \param filename filename of model
wxchan's avatar
wxchan committed
396
* \param out_num_iterations number of iterations of this booster
Guolin Ke's avatar
Guolin Ke committed
397
* \param out handle of created Booster
wxchan's avatar
wxchan committed
398
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
399
*/
400
401
402
LIGHTGBM_C_EXPORT int LGBM_BoosterCreateFromModelfile(const char* filename,
                                                      int* out_num_iterations,
                                                      BoosterHandle* out);
Guolin Ke's avatar
Guolin Ke committed
403

404
405
406
407
408
409
410
/*!
* \brief load an existing boosting from string
* \param model_str model string
* \param out_num_iterations number of iterations of this booster
* \param out handle of created Booster
* \return 0 when succeed, -1 when failure happens
*/
411
412
413
LIGHTGBM_C_EXPORT int LGBM_BoosterLoadModelFromString(const char* model_str,
                                                      int* out_num_iterations,
                                                      BoosterHandle* out);
wxchan's avatar
wxchan committed
414

Guolin Ke's avatar
Guolin Ke committed
415
416
417
/*!
* \brief free obj in handle
* \param handle handle to be freed
wxchan's avatar
wxchan committed
418
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
419
*/
420
LIGHTGBM_C_EXPORT int LGBM_BoosterFree(BoosterHandle handle);
Guolin Ke's avatar
Guolin Ke committed
421

422
423
424
/*!
* \brief Shuffle Models
*/
425
426
427
LIGHTGBM_C_EXPORT int LGBM_BoosterShuffleModels(BoosterHandle handle,
                                                int start_iter,
                                                int end_iter);
428

wxchan's avatar
wxchan committed
429
430
431
432
433
434
/*!
* \brief Merge model in two booster to first handle
* \param handle handle, will merge other handle to this
* \param other_handle
* \return 0 when succeed, -1 when failure happens
*/
435
LIGHTGBM_C_EXPORT int LGBM_BoosterMerge(BoosterHandle handle,
436
                                        BoosterHandle other_handle);
wxchan's avatar
wxchan committed
437
438
439
440
441
442
443

/*!
* \brief Add new validation to booster
* \param handle handle
* \param valid_data validation data set
* \return 0 when succeed, -1 when failure happens
*/
444
LIGHTGBM_C_EXPORT int LGBM_BoosterAddValidData(BoosterHandle handle,
445
                                               const DatasetHandle valid_data);
wxchan's avatar
wxchan committed
446
447
448
449
450
451
452

/*!
* \brief Reset training data for booster
* \param handle handle
* \param train_data training data set
* \return 0 when succeed, -1 when failure happens
*/
453
LIGHTGBM_C_EXPORT int LGBM_BoosterResetTrainingData(BoosterHandle handle,
454
                                                    const DatasetHandle train_data);
wxchan's avatar
wxchan committed
455
456
457
458
459
460
461

/*!
* \brief Reset config for current booster
* \param handle handle
* \param parameters format: 'key1=value1 key2=value2'
* \return 0 when succeed, -1 when failure happens
*/
462
463
LIGHTGBM_C_EXPORT int LGBM_BoosterResetParameter(BoosterHandle handle,
                                                 const char* parameters);
wxchan's avatar
wxchan committed
464
465

/*!
Guolin Ke's avatar
Guolin Ke committed
466
* \brief Get number of class
wxchan's avatar
wxchan committed
467
468
469
470
* \param handle handle
* \param out_len number of class
* \return 0 when succeed, -1 when failure happens
*/
471
472
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumClasses(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
473

Guolin Ke's avatar
Guolin Ke committed
474
475
476
/*!
* \brief update the model in one round
* \param handle handle
Guolin Ke's avatar
Guolin Ke committed
477
* \param is_finished 1 means finised(cannot split any more)
wxchan's avatar
wxchan committed
478
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
479
*/
480
481
LIGHTGBM_C_EXPORT int LGBM_BoosterUpdateOneIter(BoosterHandle handle,
                                                int* is_finished);
Guolin Ke's avatar
Guolin Ke committed
482

Guolin Ke's avatar
Guolin Ke committed
483
484
485
/*!
* \brief Refit the tree model using the new data (online learning)
* \param handle handle
486
* \param leaf_preds
Guolin Ke's avatar
Guolin Ke committed
487
488
489
490
* \param nrow number of rows of leaf_preds
* \param ncol number of columns of leaf_preds
* \return 0 when succeed, -1 when failure happens
*/
491
492
493
494
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
495

Guolin Ke's avatar
Guolin Ke committed
496
497
498
499
500
501
/*!
* \brief update the model, by directly specify gradient and second order gradient,
*       this can be used to support customized loss function
* \param handle handle
* \param grad gradient statistics
* \param hess second order gradient statistics
Guolin Ke's avatar
Guolin Ke committed
502
* \param is_finished 1 means finised(cannot split any more)
wxchan's avatar
wxchan committed
503
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
504
*/
505
LIGHTGBM_C_EXPORT int LGBM_BoosterUpdateOneIterCustom(BoosterHandle handle,
506
507
508
                                                      const float* grad,
                                                      const float* hess,
                                                      int* is_finished);
Guolin Ke's avatar
Guolin Ke committed
509
510

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

/*!
* \brief Get iteration of current boosting rounds
519
* \param handle handle
wxchan's avatar
wxchan committed
520
521
522
* \param out_iteration iteration of boosting rounds
* \return 0 when succeed, -1 when failure happens
*/
523
524
LIGHTGBM_C_EXPORT int LGBM_BoosterGetCurrentIteration(BoosterHandle handle,
                                                      int* out_iteration);
Guolin Ke's avatar
Guolin Ke committed
525

526
527
/*!
* \brief Get number of tree per iteration
528
* \param handle handle
529
530
531
* \param out_tree_per_iteration number of tree per iteration
* \return 0 when succeed, -1 when failure happens
*/
532
533
LIGHTGBM_C_EXPORT int LGBM_BoosterNumModelPerIteration(BoosterHandle handle,
                                                       int* out_tree_per_iteration);
534
535
536

/*!
* \brief Get number of weak sub-models
537
* \param handle handle
538
539
540
* \param out_models number of weak sub-models
* \return 0 when succeed, -1 when failure happens
*/
541
542
LIGHTGBM_C_EXPORT int LGBM_BoosterNumberOfTotalModel(BoosterHandle handle,
                                                     int* out_models);
543

Guolin Ke's avatar
Guolin Ke committed
544
/*!
Guolin Ke's avatar
Guolin Ke committed
545
* \brief Get number of eval
546
* \param handle handle
wxchan's avatar
wxchan committed
547
548
549
* \param out_len total number of eval results
* \return 0 when succeed, -1 when failure happens
*/
550
551
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEvalCounts(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
552
553

/*!
wxchan's avatar
wxchan committed
554
* \brief Get name of eval
555
* \param handle handle
wxchan's avatar
wxchan committed
556
* \param out_len total number of eval results
Guolin Ke's avatar
typo  
Guolin Ke committed
557
* \param out_strs names of eval result, need to pre-allocate memory before call this
wxchan's avatar
wxchan committed
558
559
* \return 0 when succeed, -1 when failure happens
*/
560
561
562
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEvalNames(BoosterHandle handle,
                                               int* out_len,
                                               char** out_strs);
wxchan's avatar
wxchan committed
563

wxchan's avatar
wxchan committed
564
565
/*!
* \brief Get name of features
566
* \param handle handle
wxchan's avatar
wxchan committed
567
568
569
570
* \param out_len total number of features
* \param out_strs names of features, need to pre-allocate memory before call this
* \return 0 when succeed, -1 when failure happens
*/
571
572
573
LIGHTGBM_C_EXPORT int LGBM_BoosterGetFeatureNames(BoosterHandle handle,
                                                  int* out_len,
                                                  char** out_strs);
wxchan's avatar
wxchan committed
574
575
576

/*!
* \brief Get number of features
577
* \param handle handle
wxchan's avatar
wxchan committed
578
579
580
* \param out_len total number of features
* \return 0 when succeed, -1 when failure happens
*/
581
582
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumFeature(BoosterHandle handle,
                                                int* out_len);
wxchan's avatar
wxchan committed
583

wxchan's avatar
wxchan committed
584
585
/*!
* \brief get evaluation for training data and validation data
Guolin Ke's avatar
Guolin Ke committed
586
587
Note: 1. you should call LGBM_BoosterGetEvalNames first to get the name of evaluation results
2. should pre-allocate memory for out_results, you can get its length by LGBM_BoosterGetEvalCounts
Guolin Ke's avatar
Guolin Ke committed
588
* \param handle handle
wxchan's avatar
wxchan committed
589
* \param data_idx 0:training data, 1: 1st valid data, 2:2nd valid data ...
Guolin Ke's avatar
Guolin Ke committed
590
* \param out_len len of output result
591
* \param out_results float arrary contains result
wxchan's avatar
wxchan committed
592
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
593
*/
594
LIGHTGBM_C_EXPORT int LGBM_BoosterGetEval(BoosterHandle handle,
595
596
597
                                          int data_idx,
                                          int* out_len,
                                          double* out_results);
Guolin Ke's avatar
Guolin Ke committed
598
599
600
601
602
603
604
605
606
607

/*!
* \brief Get number of predict for inner dataset
this can be used to support customized eval function
Note:  should pre-allocate memory for out_result, its length is equal to num_class * num_data
* \param handle handle
* \param data_idx 0:training data, 1: 1st valid data, 2:2nd valid data ...
* \param out_len len of output result
* \return 0 when succeed, -1 when failure happens
*/
608
LIGHTGBM_C_EXPORT int LGBM_BoosterGetNumPredict(BoosterHandle handle,
609
610
                                                int data_idx,
                                                int64_t* out_len);
Guolin Ke's avatar
Guolin Ke committed
611

Guolin Ke's avatar
Guolin Ke committed
612
/*!
Guolin Ke's avatar
Guolin Ke committed
613
* \brief Get prediction for training data and validation data
Guolin Ke's avatar
Guolin Ke committed
614
615
this can be used to support customized eval function
Note:  should pre-allocate memory for out_result, its length is equal to num_class * num_data
Guolin Ke's avatar
Guolin Ke committed
616
* \param handle handle
wxchan's avatar
wxchan committed
617
* \param data_idx 0:training data, 1: 1st valid data, 2:2nd valid data ...
Guolin Ke's avatar
Guolin Ke committed
618
* \param out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
619
* \param out_result used to set a pointer to array, should allocate memory before call this function
wxchan's avatar
wxchan committed
620
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
621
*/
622
LIGHTGBM_C_EXPORT int LGBM_BoosterGetPredict(BoosterHandle handle,
623
624
625
                                             int data_idx,
                                             int64_t* out_len,
                                             double* out_result);
Guolin Ke's avatar
Guolin Ke committed
626

627
628
629
630
/*!
* \brief make prediction for file
* \param handle handle
* \param data_filename filename of data file
wxchan's avatar
wxchan committed
631
632
633
634
635
636
* \param data_has_header data file has header or not
* \param predict_type
*          C_API_PREDICT_NORMAL: normal prediction, with transform (if needed)
*          C_API_PREDICT_RAW_SCORE: raw score
*          C_API_PREDICT_LEAF_INDEX: leaf index
* \param num_iteration number of iteration for prediction, <= 0 means no limit
Guolin Ke's avatar
Guolin Ke committed
637
* \param parameter Other parameters for the parameters, e.g. early stopping for prediction.
638
* \param result_filename filename of result file
wxchan's avatar
wxchan committed
639
* \return 0 when succeed, -1 when failure happens
640
*/
641
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForFile(BoosterHandle handle,
642
643
644
645
                                                 const char* data_filename,
                                                 int data_has_header,
                                                 int predict_type,
                                                 int num_iteration,
646
                                                 const char* parameter,
647
                                                 const char* result_filename);
648

Guolin Ke's avatar
Guolin Ke committed
649
650
651
/*!
* \brief Get number of prediction
* \param handle handle
Guolin Ke's avatar
Guolin Ke committed
652
* \param num_row
Guolin Ke's avatar
Guolin Ke committed
653
654
655
656
657
* \param predict_type
*          C_API_PREDICT_NORMAL: normal prediction, with transform (if needed)
*          C_API_PREDICT_RAW_SCORE: raw score
*          C_API_PREDICT_LEAF_INDEX: leaf index
* \param num_iteration number of iteration for prediction, <= 0 means no limit
658
* \param out_len length of prediction
Guolin Ke's avatar
Guolin Ke committed
659
660
* \return 0 when succeed, -1 when failure happens
*/
661
LIGHTGBM_C_EXPORT int LGBM_BoosterCalcNumPredict(BoosterHandle handle,
662
663
664
665
                                                 int num_row,
                                                 int predict_type,
                                                 int num_iteration,
                                                 int64_t* out_len);
Guolin Ke's avatar
Guolin Ke committed
666

Guolin Ke's avatar
Guolin Ke committed
667
668
/*!
* \brief make prediction for an new data set
Guolin Ke's avatar
Guolin Ke committed
669
*        Note:  should pre-allocate memory for out_result,
670
*               for normal and raw score: its length is equal to num_class * num_data
wxchan's avatar
wxchan committed
671
*               for leaf index, its length is equal to num_class * num_data * num_iteration
Guolin Ke's avatar
Guolin Ke committed
672
673
* \param handle handle
* \param indptr pointer to row headers
wxchan's avatar
wxchan committed
674
* \param indptr_type type of indptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
Guolin Ke's avatar
Guolin Ke committed
675
676
* \param indices findex
* \param data fvalue
wxchan's avatar
wxchan committed
677
* \param data_type type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
Guolin Ke's avatar
Guolin Ke committed
678
* \param nindptr number of rows in the matrix + 1
Guolin Ke's avatar
Guolin Ke committed
679
680
681
* \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
wxchan's avatar
wxchan committed
682
683
684
685
*          C_API_PREDICT_NORMAL: normal prediction, with transform (if needed)
*          C_API_PREDICT_RAW_SCORE: raw score
*          C_API_PREDICT_LEAF_INDEX: leaf index
* \param num_iteration number of iteration for prediction, <= 0 means no limit
Guolin Ke's avatar
Guolin Ke committed
686
* \param parameter Other parameters for the parameters, e.g. early stopping for prediction.
wxchan's avatar
wxchan committed
687
* \param out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
688
* \param out_result used to set a pointer to array, should allocate memory before call this function
wxchan's avatar
wxchan committed
689
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
690
*/
691
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSR(BoosterHandle handle,
692
693
694
695
696
697
698
699
700
701
                                                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,
702
                                                const char* parameter,
703
704
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
705

706
/*!
707
* \brief make prediction for an new data set. This method re-uses the internal predictor structure
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
*        from previous calls and is optimized for single row invocation.
*        Note:  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
* \param handle handle
* \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 findex
* \param data fvalue
* \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
*          C_API_PREDICT_NORMAL: normal prediction, with transform (if needed)
*          C_API_PREDICT_RAW_SCORE: raw score
*          C_API_PREDICT_LEAF_INDEX: leaf index
* \param num_iteration number of iteration for prediction, <= 0 means no limit
* \param parameter Other parameters for the parameters, e.g. early stopping for prediction.
* \param out_len len of output result
* \param out_result used to set a pointer to array, should allocate memory before call this function
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSRSingleRow(BoosterHandle handle,
732
733
734
735
736
737
738
739
740
741
742
743
744
                                                         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);
745
746


Guolin Ke's avatar
Guolin Ke committed
747
748
749
/*!
* \brief make prediction for an new data set
*        Note:  should pre-allocate memory for out_result,
750
*               for normal and raw score: its length is equal to num_class * num_data
Guolin Ke's avatar
Guolin Ke committed
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
*               for leaf index, its length is equal to num_class * num_data * num_iteration
* \param handle handle
* \param col_ptr pointer to col headers
* \param col_ptr_type type of col_ptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
* \param indices findex
* \param data fvalue
* \param data_type type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
* \param ncol_ptr number of cols in the matrix + 1
* \param nelem number of nonzero elements in the matrix
* \param num_row number of rows
* \param predict_type
*          C_API_PREDICT_NORMAL: normal prediction, with transform (if needed)
*          C_API_PREDICT_RAW_SCORE: raw score
*          C_API_PREDICT_LEAF_INDEX: leaf index
* \param num_iteration number of iteration for prediction, <= 0 means no limit
Guolin Ke's avatar
Guolin Ke committed
766
* \param parameter Other parameters for the parameters, e.g. early stopping for prediction.
Guolin Ke's avatar
Guolin Ke committed
767
768
769
770
* \param out_len len of output result
* \param out_result used to set a pointer to array, should allocate memory before call this function
* \return 0 when succeed, -1 when failure happens
*/
771
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForCSC(BoosterHandle handle,
772
773
774
775
776
777
778
779
780
781
                                                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,
782
                                                const char* parameter,
783
784
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
785
786
787

/*!
* \brief make prediction for an new data set
wxchan's avatar
wxchan committed
788
*        Note:  should pre-allocate memory for out_result,
789
*               for normal and raw score: its length is equal to num_class * num_data
wxchan's avatar
wxchan committed
790
*               for leaf index, its length is equal to num_class * num_data * num_iteration
Guolin Ke's avatar
Guolin Ke committed
791
792
* \param handle handle
* \param data pointer to the data space
wxchan's avatar
wxchan committed
793
* \param data_type type of data pointer, can be C_API_DTYPE_FLOAT32 or C_API_DTYPE_FLOAT64
Guolin Ke's avatar
Guolin Ke committed
794
795
* \param nrow number of rows
* \param ncol number columns
Guolin Ke's avatar
Guolin Ke committed
796
* \param is_row_major 1 for row major, 0 for column major
Guolin Ke's avatar
Guolin Ke committed
797
* \param predict_type
wxchan's avatar
wxchan committed
798
799
800
801
*          C_API_PREDICT_NORMAL: normal prediction, with transform (if needed)
*          C_API_PREDICT_RAW_SCORE: raw score
*          C_API_PREDICT_LEAF_INDEX: leaf index
* \param num_iteration number of iteration for prediction, <= 0 means no limit
Guolin Ke's avatar
Guolin Ke committed
802
* \param parameter Other parameters for the parameters, e.g. early stopping for prediction.
wxchan's avatar
wxchan committed
803
* \param out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
804
* \param out_result used to set a pointer to array, should allocate memory before call this function
wxchan's avatar
wxchan committed
805
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
806
*/
807
LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForMat(BoosterHandle handle,
808
809
810
811
812
813
814
                                                const void* data,
                                                int data_type,
                                                int32_t nrow,
                                                int32_t ncol,
                                                int is_row_major,
                                                int predict_type,
                                                int num_iteration,
815
                                                const char* parameter,
816
817
                                                int64_t* out_len,
                                                double* out_result);
Guolin Ke's avatar
Guolin Ke committed
818

819
/*!
820
* \brief make prediction for an new data set. This method re-uses the internal predictor structure
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
*        from previous calls and is optimized for single row invocation.
*        Note:  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
* \param handle handle
* \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
*          C_API_PREDICT_NORMAL: normal prediction, with transform (if needed)
*          C_API_PREDICT_RAW_SCORE: raw score
*          C_API_PREDICT_LEAF_INDEX: leaf index
* \param num_iteration number of iteration for prediction, <= 0 means no limit
* \param parameter Other parameters for the parameters, e.g. early stopping for prediction.
* \param out_len len of output result
* \param out_result used to set a pointer to array, should allocate memory before call this function
* \return 0 when succeed, -1 when failure happens
*/LIGHTGBM_C_EXPORT int LGBM_BoosterPredictForMatSingleRow(BoosterHandle handle,
840
841
842
843
844
845
846
847
848
                                                           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);
849

850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
/*!
* \brief make prediction for an new data set
*        Note:  should pre-allocate memory for out_result,
*               for noraml 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
* \param handle handle
* \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
*          C_API_PREDICT_NORMAL: normal prediction, with transform (if needed)
*          C_API_PREDICT_RAW_SCORE: raw score
*          C_API_PREDICT_LEAF_INDEX: leaf index
* \param num_iteration number of iteration for prediction, <= 0 means no limit
* \param parameter Other parameters for the parameters, e.g. early stopping for prediction.
* \param out_len len of output result
* \param out_result used to set a pointer to array, should allocate memory before call this function
* \return 0 when succeed, -1 when failure happens
*/
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);
880

Guolin Ke's avatar
Guolin Ke committed
881
882
883
/*!
* \brief save model into file
* \param handle handle
884
* \param start_iteration start iteration that should be saved
wxchan's avatar
wxchan committed
885
* \param num_iteration, <= 0 means save all
Guolin Ke's avatar
Guolin Ke committed
886
* \param filename file name
wxchan's avatar
wxchan committed
887
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
888
*/
889
LIGHTGBM_C_EXPORT int LGBM_BoosterSaveModel(BoosterHandle handle,
890
                                            int start_iteration,
891
892
                                            int num_iteration,
                                            const char* filename);
Guolin Ke's avatar
Guolin Ke committed
893

894
895
896
/*!
* \brief save model to string
* \param handle handle
897
* \param start_iteration start iteration that should be saved
898
899
900
901
902
903
904
* \param num_iteration, <= 0 means save all
* \param buffer_len string buffer length, if buffer_len < out_len, re-allocate buffer
* \param out_len actual output length
* \param out_str string of model, need to pre-allocate memory before call this
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_BoosterSaveModelToString(BoosterHandle handle,
905
                                                    int start_iteration,
906
                                                    int num_iteration,
907
908
                                                    int64_t buffer_len,
                                                    int64_t* out_len,
909
                                                    char* out_str);
910

wxchan's avatar
wxchan committed
911
912
913
/*!
* \brief dump model to json
* \param handle handle
914
* \param start_iteration start iteration that should be dumped
915
* \param num_iteration, <= 0 means save all
wxchan's avatar
wxchan committed
916
917
* \param buffer_len string buffer length, if buffer_len < out_len, re-allocate buffer
* \param out_len actual output length
Guolin Ke's avatar
typo  
Guolin Ke committed
918
* \param out_str json format string of model, need to pre-allocate memory before call this
wxchan's avatar
wxchan committed
919
920
* \return 0 when succeed, -1 when failure happens
*/
921
LIGHTGBM_C_EXPORT int LGBM_BoosterDumpModel(BoosterHandle handle,
922
                                            int start_iteration,
923
                                            int num_iteration,
924
925
                                            int64_t buffer_len,
                                            int64_t* out_len,
926
                                            char* out_str);
927

Guolin Ke's avatar
Guolin Ke committed
928
/*!
Guolin Ke's avatar
Guolin Ke committed
929
* \brief Get leaf value
Guolin Ke's avatar
Guolin Ke committed
930
931
932
933
934
935
* \param handle handle
* \param tree_idx index of tree
* \param leaf_idx index of leaf
* \param out_val out result
* \return 0 when succeed, -1 when failure happens
*/
936
LIGHTGBM_C_EXPORT int LGBM_BoosterGetLeafValue(BoosterHandle handle,
937
938
939
                                               int tree_idx,
                                               int leaf_idx,
                                               double* out_val);
Guolin Ke's avatar
Guolin Ke committed
940
941
942
943
944
945
946
947
948

/*!
* \brief Set leaf value
* \param handle handle
* \param tree_idx index of tree
* \param leaf_idx index of leaf
* \param val leaf value
* \return 0 when succeed, -1 when failure happens
*/
949
LIGHTGBM_C_EXPORT int LGBM_BoosterSetLeafValue(BoosterHandle handle,
950
951
952
                                               int tree_idx,
                                               int leaf_idx,
                                               double val);
953

954
955
956
957
958
959
960
961
962
963
964
965
966
/*!
* \brief get model feature importance
* \param handle handle
* \param num_iteration, <= 0 means use all
* \param importance_type: 0 for split, 1 for gain
* \param out_results output value array
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_BoosterFeatureImportance(BoosterHandle handle,
                                                    int num_iteration,
                                                    int importance_type,
                                                    double* out_results);

967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
/*!
* \brief Initilize the network
* \param machines represent the nodes, format: ip1:port1,ip2:port2
* \param local_listen_port
* \param listen_time_out
* \param num_machines
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_NetworkInit(const char* machines,
                                       int local_listen_port,
                                       int listen_time_out,
                                       int num_machines);

/*!
* \brief Finalize the network
* \return 0 when succeed, -1 when failure happens
*/
LIGHTGBM_C_EXPORT int LGBM_NetworkFree();

986
987
LIGHTGBM_C_EXPORT int LGBM_NetworkInitWithFunctions(int num_machines, int rank,
                                                    void* reduce_scatter_ext_fun,
988
                                                    void* allgather_ext_fun);
989

Guolin Ke's avatar
Guolin Ke committed
990
991

#if defined(_MSC_VER)
992
#define THREAD_LOCAL __declspec(thread)
Guolin Ke's avatar
Guolin Ke committed
993
994
995
#else
#define THREAD_LOCAL thread_local
#endif
996
// exception handle and error msg
997
static char* LastErrorMsg() { static THREAD_LOCAL char err_msg[512] = "Everything is fine"; return err_msg; }
998

999
#pragma warning(disable : 4996)
1000
inline void LGBM_SetLastError(const char* msg) {
wxchan's avatar
wxchan committed
1001
  std::strcpy(LastErrorMsg(), msg);
1002
1003
}

1004
#endif  // LIGHTGBM_C_API_H_