c_api.h 17.5 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
#ifndef LIGHTGBM_C_API_H_
#define LIGHTGBM_C_API_H_
3
4
5
#include <cstdint>
#include <exception>
#include <stdexcept>
wxchan's avatar
wxchan committed
6
#include <cstring>
7
#include <string>
wxchan's avatar
wxchan committed
8

9
10
11
/*!
* 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
12
* 1. gradients and hessians.
13
* 2. Get current score for training data and validation
wxchan's avatar
wxchan committed
14
* The reason is because they are called frequently, the type-conversion on them maybe time cost.
15
16
*/

Guolin Ke's avatar
Guolin Ke committed
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifdef __cplusplus
#define DLL_EXTERN_C extern "C"
#else
#define DLL_EXTERN_C
#endif

#ifdef _MSC_VER
#define DllExport DLL_EXTERN_C __declspec(dllexport)
#else
#define DllExport DLL_EXTERN_C
#endif

typedef void* DatesetHandle;
typedef void* BoosterHandle;

Guolin Ke's avatar
Guolin Ke committed
32
33
34
35
36
37
38
39
#define C_API_DTYPE_FLOAT32 (0)
#define C_API_DTYPE_FLOAT64 (1)
#define C_API_DTYPE_INT32   (2)
#define C_API_DTYPE_INT64   (3)

#define C_API_PREDICT_NORMAL     (0)
#define C_API_PREDICT_RAW_SCORE  (1)
#define C_API_PREDICT_LEAF_INDEX (2)
40

Guolin Ke's avatar
Guolin Ke committed
41
42
/*!
* \brief get string message of the last error
wxchan's avatar
wxchan committed
43
*  all function in this file will return 0 when succeed
Guolin Ke's avatar
Guolin Ke committed
44
45
46
47
48
49
*  and -1 when an error occured,
* \return const char* error inforomation
*/
DllExport const char* LGBM_GetLastError();


Guolin Ke's avatar
Guolin Ke committed
50
// --- start Dataset interface
Guolin Ke's avatar
Guolin Ke committed
51
52
53
54

/*!
* \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
55
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
56
57
* \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
58
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
59
*/
wxchan's avatar
wxchan committed
60
DllExport int LGBM_DatasetCreateFromFile(const char* filename,
Guolin Ke's avatar
Guolin Ke committed
61
62
63
64
65
66
67
  const char* parameters,
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief create a dataset from CSR format
* \param indptr pointer to row headers
wxchan's avatar
wxchan committed
68
* \param indptr_type type of indptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
Guolin Ke's avatar
Guolin Ke committed
69
70
* \param indices findex
* \param data fvalue
wxchan's avatar
wxchan committed
71
* \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
72
* \param nindptr number of rows in the matrix + 1
Guolin Ke's avatar
Guolin Ke committed
73
* \param nelem number of nonzero elements in the matrix
wxchan's avatar
wxchan committed
74
* \param num_col number of columns
Guolin Ke's avatar
Guolin Ke committed
75
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
76
77
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out created dataset
wxchan's avatar
wxchan committed
78
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
79
*/
wxchan's avatar
wxchan committed
80
DllExport int LGBM_DatasetCreateFromCSR(const void* indptr,
81
  int indptr_type,
Guolin Ke's avatar
Guolin Ke committed
82
  const int32_t* indices,
83
  const void* data,
84
85
86
87
  int data_type,
  int64_t nindptr,
  int64_t nelem,
  int64_t num_col,
Guolin Ke's avatar
Guolin Ke committed
88
89
90
91
92
93
94
  const char* parameters,
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief create a dataset from CSC format
* \param col_ptr pointer to col headers
wxchan's avatar
wxchan committed
95
* \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
96
97
* \param indices findex
* \param data fvalue
wxchan's avatar
wxchan committed
98
99
* \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
100
* \param nelem number of nonzero elements in the matrix
wxchan's avatar
wxchan committed
101
* \param num_row number of rows
Guolin Ke's avatar
Guolin Ke committed
102
103
104
* \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
105
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
106
*/
wxchan's avatar
wxchan committed
107
DllExport int LGBM_DatasetCreateFromCSC(const void* col_ptr,
108
  int col_ptr_type,
Guolin Ke's avatar
Guolin Ke committed
109
110
  const int32_t* indices,
  const void* data,
111
112
113
114
  int data_type,
  int64_t ncol_ptr,
  int64_t nelem,
  int64_t num_row,
Guolin Ke's avatar
Guolin Ke committed
115
  const char* parameters,
Guolin Ke's avatar
Guolin Ke committed
116
117
118
119
120
121
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief create dataset from dense matrix
* \param data pointer to the data space
wxchan's avatar
wxchan committed
122
* \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
123
124
* \param nrow number of rows
* \param ncol number columns
125
* \param is_row_major 1 for row major, 0 for column major
Guolin Ke's avatar
Guolin Ke committed
126
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
127
128
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out created dataset
wxchan's avatar
wxchan committed
129
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
130
*/
wxchan's avatar
wxchan committed
131
DllExport int LGBM_DatasetCreateFromMat(const void* data,
132
  int data_type,
Guolin Ke's avatar
Guolin Ke committed
133
134
  int32_t nrow,
  int32_t ncol,
135
  int is_row_major,
Guolin Ke's avatar
Guolin Ke committed
136
  const char* parameters,
Guolin Ke's avatar
Guolin Ke committed
137
138
139
  const DatesetHandle* reference,
  DatesetHandle* out);

wxchan's avatar
wxchan committed
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*!
* \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
*/
DllExport int LGBM_DatasetGetSubset(
  const DatesetHandle* handle,
  const int32_t* used_row_indices,
  int32_t num_used_row_indices,
  const char* parameters,
  DatesetHandle* out);

Guolin Ke's avatar
Guolin Ke committed
156
157
/*!
* \brief free space for dataset
wxchan's avatar
wxchan committed
158
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
159
*/
160
DllExport int LGBM_DatasetFree(DatesetHandle handle);
Guolin Ke's avatar
Guolin Ke committed
161
162
163
164
165

/*!
* \brief save dateset to binary file
* \param handle a instance of dataset
* \param filename file name
wxchan's avatar
wxchan committed
166
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
167
168
169
170
171
172
*/
DllExport int LGBM_DatasetSaveBinary(DatesetHandle handle,
  const char* filename);

/*!
* \brief set vector to a content in info
wxchan's avatar
wxchan committed
173
174
*        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
175
* \param handle a instance of dataset
wxchan's avatar
wxchan committed
176
* \param field_name field name, can be label, weight, group, group_id
177
* \param field_data pointer to vector
Guolin Ke's avatar
Guolin Ke committed
178
* \param num_element number of element in field_data
wxchan's avatar
wxchan committed
179
180
* \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
181
182
183
184
*/
DllExport int LGBM_DatasetSetField(DatesetHandle handle,
  const char* field_name,
  const void* field_data,
185
  int64_t num_element,
Guolin Ke's avatar
Guolin Ke committed
186
187
188
  int type);

/*!
189
* \brief get info vector from dataset
Guolin Ke's avatar
Guolin Ke committed
190
191
192
193
* \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
194
195
* \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
196
197
198
*/
DllExport int LGBM_DatasetGetField(DatesetHandle handle,
  const char* field_name,
199
  int64_t* out_len,
Guolin Ke's avatar
Guolin Ke committed
200
201
202
203
204
205
206
  const void** out_ptr,
  int* out_type);

/*!
* \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
207
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
208
209
*/
DllExport int LGBM_DatasetGetNumData(DatesetHandle handle,
210
  int64_t* out);
Guolin Ke's avatar
Guolin Ke committed
211
212
213
214
215

/*!
* \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
216
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
217
218
*/
DllExport int LGBM_DatasetGetNumFeature(DatesetHandle handle,
219
  int64_t* out);
Guolin Ke's avatar
Guolin Ke committed
220
221
222
223
224

// --- start Booster interfaces

/*!
* \brief create an new boosting learner
Guolin Ke's avatar
Guolin Ke committed
225
* \param train_data training data set
Guolin Ke's avatar
Guolin Ke committed
226
227
* \param parameters format: 'key1=value1 key2=value2'
* \prama out handle of created Booster
wxchan's avatar
wxchan committed
228
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
229
*/
230
DllExport int LGBM_BoosterCreate(const DatesetHandle train_data,
Guolin Ke's avatar
Guolin Ke committed
231
232
233
234
  const char* parameters,
  BoosterHandle* out);

/*!
Guolin Ke's avatar
Guolin Ke committed
235
* \brief load an existing boosting from model file
Guolin Ke's avatar
Guolin Ke committed
236
* \param filename filename of model
wxchan's avatar
wxchan committed
237
* \param out_num_iterations number of iterations of this booster
Guolin Ke's avatar
Guolin Ke committed
238
* \param out handle of created Booster
wxchan's avatar
wxchan committed
239
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
240
*/
wxchan's avatar
wxchan committed
241
DllExport int LGBM_BoosterCreateFromModelfile(
Guolin Ke's avatar
Guolin Ke committed
242
  const char* filename,
wxchan's avatar
wxchan committed
243
  int64_t* out_num_iterations,
Guolin Ke's avatar
Guolin Ke committed
244
245
  BoosterHandle* out);

wxchan's avatar
wxchan committed
246

Guolin Ke's avatar
Guolin Ke committed
247
248
249
/*!
* \brief free obj in handle
* \param handle handle to be freed
wxchan's avatar
wxchan committed
250
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
251
252
253
*/
DllExport int LGBM_BoosterFree(BoosterHandle handle);

wxchan's avatar
wxchan committed
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*!
* \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
*/
DllExport int LGBM_BoosterMerge(BoosterHandle handle,
  BoosterHandle other_handle);

/*!
* \brief Add new validation to booster
* \param handle handle
* \param valid_data validation data set
* \return 0 when succeed, -1 when failure happens
*/
DllExport int LGBM_BoosterAddValidData(BoosterHandle handle,
  const DatesetHandle valid_data);

/*!
* \brief Reset training data for booster
* \param handle handle
* \param train_data training data set
* \return 0 when succeed, -1 when failure happens
*/
DllExport int LGBM_BoosterResetTrainingData(BoosterHandle handle,
  const DatesetHandle train_data);

/*!
* \brief Reset config for current booster
* \param handle handle
* \param parameters format: 'key1=value1 key2=value2'
* \return 0 when succeed, -1 when failure happens
*/
DllExport int LGBM_BoosterResetParameter(BoosterHandle handle, const char* parameters);

/*!
* \brief Get number of class 
* \param handle handle
* \param out_len number of class
* \return 0 when succeed, -1 when failure happens
*/
DllExport int LGBM_BoosterGetNumClasses(BoosterHandle handle, int64_t* out_len);

Guolin Ke's avatar
Guolin Ke committed
297
298
299
/*!
* \brief update the model in one round
* \param handle handle
Guolin Ke's avatar
Guolin Ke committed
300
* \param is_finished 1 means finised(cannot split any more)
wxchan's avatar
wxchan committed
301
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
302
303
304
305
306
307
308
309
310
*/
DllExport int LGBM_BoosterUpdateOneIter(BoosterHandle handle, int* is_finished);

/*!
* \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
311
* \param is_finished 1 means finised(cannot split any more)
wxchan's avatar
wxchan committed
312
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
313
314
*/
DllExport int LGBM_BoosterUpdateOneIterCustom(BoosterHandle handle,
315
316
  const float* grad,
  const float* hess,
Guolin Ke's avatar
Guolin Ke committed
317
318
319
  int* is_finished);

/*!
wxchan's avatar
wxchan committed
320
* \brief Rollback one iteration
Guolin Ke's avatar
Guolin Ke committed
321
* \param handle handle
wxchan's avatar
wxchan committed
322
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
323
*/
wxchan's avatar
wxchan committed
324
325
326
327
328
329
330
331
DllExport int LGBM_BoosterRollbackOneIter(BoosterHandle handle);

/*!
* \brief Get iteration of current boosting rounds
* \param out_iteration iteration of boosting rounds
* \return 0 when succeed, -1 when failure happens
*/
DllExport int LGBM_BoosterGetCurrentIteration(BoosterHandle handle, int64_t* out_iteration);
Guolin Ke's avatar
Guolin Ke committed
332

Guolin Ke's avatar
Guolin Ke committed
333
/*!
wxchan's avatar
wxchan committed
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
* \brief Get number of eval 
* \param out_len total number of eval results
* \return 0 when succeed, -1 when failure happens
*/
DllExport int LGBM_BoosterGetEvalCounts(BoosterHandle handle, int64_t* out_len);

/*!
* \brief Get Name of eval
* \param out_len total number of eval results
* \param out_strs names of eval result
* \return 0 when succeed, -1 when failure happens
*/
DllExport int LGBM_BoosterGetEvalNames(BoosterHandle handle, int64_t* out_len, char** out_strs);

/*!
* \brief get evaluation for training data and validation data
         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
352
* \param handle handle
wxchan's avatar
wxchan committed
353
* \param data_idx 0:training data, 1: 1st valid data, 2:2nd valid data ...
Guolin Ke's avatar
Guolin Ke committed
354
* \param out_len len of output result
wxchan's avatar
wxchan committed
355
356
* \param out_result float arrary contains result
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
357
*/
wxchan's avatar
wxchan committed
358
359
DllExport int LGBM_BoosterGetEval(BoosterHandle handle,
  int data_idx,
360
  int64_t* out_len,
wxchan's avatar
wxchan committed
361
  float* out_results);
Guolin Ke's avatar
Guolin Ke committed
362

Guolin Ke's avatar
Guolin Ke committed
363
/*!
Guolin Ke's avatar
Guolin Ke committed
364
* \brief Get prediction for training data and validation data
wxchan's avatar
wxchan committed
365
366
         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
367
* \param handle handle
wxchan's avatar
wxchan committed
368
* \param data_idx 0:training data, 1: 1st valid data, 2:2nd valid data ...
Guolin Ke's avatar
Guolin Ke committed
369
* \param out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
370
* \param out_result used to set a pointer to array, should allocate memory before call this function
wxchan's avatar
wxchan committed
371
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
372
*/
Guolin Ke's avatar
Guolin Ke committed
373
DllExport int LGBM_BoosterGetPredict(BoosterHandle handle,
wxchan's avatar
wxchan committed
374
  int data_idx,
375
  int64_t* out_len,
Guolin Ke's avatar
Guolin Ke committed
376
  float* out_result);
Guolin Ke's avatar
Guolin Ke committed
377

378
379
380
381
/*!
* \brief make prediction for file
* \param handle handle
* \param data_filename filename of data file
wxchan's avatar
wxchan committed
382
383
384
385
386
387
* \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
388
* \param result_filename filename of result file
wxchan's avatar
wxchan committed
389
* \return 0 when succeed, -1 when failure happens
390
391
392
*/
DllExport int LGBM_BoosterPredictForFile(BoosterHandle handle,
  const char* data_filename,
wxchan's avatar
wxchan committed
393
394
395
  int data_has_header,
  int predict_type,
  int64_t num_iteration,
396
397
  const char* result_filename);

Guolin Ke's avatar
Guolin Ke committed
398
399
/*!
* \brief make prediction for an new data set
wxchan's avatar
wxchan committed
400
401
402
*        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
Guolin Ke's avatar
Guolin Ke committed
403
404
* \param handle handle
* \param indptr pointer to row headers
wxchan's avatar
wxchan committed
405
* \param indptr_type type of indptr, can be C_API_DTYPE_INT32 or C_API_DTYPE_INT64
Guolin Ke's avatar
Guolin Ke committed
406
407
* \param indices findex
* \param data fvalue
wxchan's avatar
wxchan committed
408
* \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
409
* \param nindptr number of rows in the matrix + 1
Guolin Ke's avatar
Guolin Ke committed
410
411
412
* \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
413
414
415
416
417
*          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 out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
418
* \param out_result used to set a pointer to array, should allocate memory before call this function
wxchan's avatar
wxchan committed
419
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
420
421
*/
DllExport int LGBM_BoosterPredictForCSR(BoosterHandle handle,
422
423
  const void* indptr,
  int indptr_type,
Guolin Ke's avatar
Guolin Ke committed
424
  const int32_t* indices,
425
  const void* data,
426
427
428
429
  int data_type,
  int64_t nindptr,
  int64_t nelem,
  int64_t num_col,
Guolin Ke's avatar
Guolin Ke committed
430
  int predict_type,
wxchan's avatar
wxchan committed
431
432
433
  int64_t num_iteration,
  int64_t* out_len,
  float* out_result);
Guolin Ke's avatar
Guolin Ke committed
434
435
436

/*!
* \brief make prediction for an new data set
wxchan's avatar
wxchan committed
437
438
439
*        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
Guolin Ke's avatar
Guolin Ke committed
440
441
* \param handle handle
* \param data pointer to the data space
wxchan's avatar
wxchan committed
442
* \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
443
444
* \param nrow number of rows
* \param ncol number columns
Guolin Ke's avatar
Guolin Ke committed
445
* \param is_row_major 1 for row major, 0 for column major
Guolin Ke's avatar
Guolin Ke committed
446
* \param predict_type
wxchan's avatar
wxchan committed
447
448
449
450
451
*          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 out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
452
* \param out_result used to set a pointer to array, should allocate memory before call this function
wxchan's avatar
wxchan committed
453
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
454
455
*/
DllExport int LGBM_BoosterPredictForMat(BoosterHandle handle,
456
  const void* data,
457
  int data_type,
Guolin Ke's avatar
Guolin Ke committed
458
459
  int32_t nrow,
  int32_t ncol,
Guolin Ke's avatar
Guolin Ke committed
460
  int is_row_major,
Guolin Ke's avatar
Guolin Ke committed
461
  int predict_type,
wxchan's avatar
wxchan committed
462
463
464
  int64_t num_iteration,
  int64_t* out_len,
  float* out_result);
Guolin Ke's avatar
Guolin Ke committed
465
466
467
468

/*!
* \brief save model into file
* \param handle handle
wxchan's avatar
wxchan committed
469
* \param num_iteration, <= 0 means save all
Guolin Ke's avatar
Guolin Ke committed
470
* \param filename file name
wxchan's avatar
wxchan committed
471
* \return 0 when succeed, -1 when failure happens
Guolin Ke's avatar
Guolin Ke committed
472
473
*/
DllExport int LGBM_BoosterSaveModel(BoosterHandle handle,
wxchan's avatar
wxchan committed
474
  int num_iteration,
Guolin Ke's avatar
Guolin Ke committed
475
476
  const char* filename);

wxchan's avatar
wxchan committed
477
478
479
480
481
482
483
484
485
486
487
488
/*!
* \brief dump model to json
* \param handle handle
* \param buffer_len string buffer length, if buffer_len < out_len, re-allocate buffer
* \param out_len actual output length
* \param out_str json format string of model
* \return 0 when succeed, -1 when failure happens
*/
DllExport int LGBM_BoosterDumpModel(BoosterHandle handle,
  int buffer_len,
  int64_t* out_len,
  char** out_str);
489

Guolin Ke's avatar
Guolin Ke committed
490
491
// some help functions used to convert data

492
493
494
495
496
497
498
std::function<std::vector<double>(int row_idx)>
RowFunctionFromDenseMatric(const void* data, int num_row, int num_col, int data_type, int is_row_major);

std::function<std::vector<std::pair<int, double>>(int row_idx)>
RowPairFunctionFromDenseMatric(const void* data, int num_row, int num_col, int data_type, int is_row_major);

std::function<std::vector<std::pair<int, double>>(int idx)>
wxchan's avatar
wxchan committed
499
RowFunctionFromCSR(const void* indptr, int indptr_type, const int32_t* indices,
500
501
502
  const void* data, int data_type, int64_t nindptr, int64_t nelem);

std::function<std::vector<std::pair<int, double>>(int idx)>
wxchan's avatar
wxchan committed
503
ColumnFunctionFromCSC(const void* col_ptr, int col_ptr_type, const int32_t* indices,
504
505
  const void* data, int data_type, int64_t ncol_ptr, int64_t nelem);

wxchan's avatar
wxchan committed
506
std::vector<double>
507
SampleFromOneColumn(const std::vector<std::pair<int, double>>& data, const std::vector<int>& indices);
508

wxchan's avatar
wxchan committed
509
#if defined(_MSC_VER)
510
// exception handle and error msg
wxchan's avatar
wxchan committed
511
512
513
514
static char* LastErrorMsg() { static __declspec(thread) char err_msg[512] = "Everything is fine"; return err_msg; }
#else
static char* LastErrorMsg() { static thread_local char err_msg[512] = "Everything is fine"; return err_msg; }
#endif
515
516

inline void LGBM_SetLastError(const char* msg) {
wxchan's avatar
wxchan committed
517
  std::strcpy(LastErrorMsg(), msg);
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
}

inline int LGBM_APIHandleException(const std::exception& ex) {
  LGBM_SetLastError(ex.what());
  return -1;
}
inline int LGBM_APIHandleException(const std::string& ex) {
  LGBM_SetLastError(ex.c_str());
  return -1;
}

#define API_BEGIN() try {

#define API_END() } \
catch(std::exception& ex) { return LGBM_APIHandleException(ex); } \
catch(std::string& ex) { return LGBM_APIHandleException(ex); } \
catch(...) { return LGBM_APIHandleException("unknown exception"); } \
wxchan's avatar
wxchan committed
535
return 0;
536

Guolin Ke's avatar
Guolin Ke committed
537
#endif // LIGHTGBM_C_API_H_