"include/LightGBM/utils/json11.h" did not exist on "6f548ada45f33bc054accaacd350034dd029b9d7"
c_api.h 12.5 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
#ifndef LIGHTGBM_C_API_H_
#define LIGHTGBM_C_API_H_
#include<cstdint>

5
6
7
8
9
10

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

Guolin Ke's avatar
Guolin Ke committed
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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
29
30
31
32
33
34
35
36
#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)
37

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


Guolin Ke's avatar
Guolin Ke committed
47
// --- start Dataset interface
Guolin Ke's avatar
Guolin Ke committed
48
49
50
51

/*!
* \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
52
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out a loaded dataset
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_CreateDatasetFromFile(const char* filename,
  const char* parameters,
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief load data set from binary file like the command_line LightGBM do
* \param filename the name of the file
* \param out a loaded dataset
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_CreateDatasetFromBinaryFile(const char* filename,
  DatesetHandle* out);

/*!
* \brief create a dataset from CSR format
* \param indptr pointer to row headers
Guolin Ke's avatar
Guolin Ke committed
74
* \param indptr_type
Guolin Ke's avatar
Guolin Ke committed
75
76
* \param indices findex
* \param data fvalue
Guolin Ke's avatar
Guolin Ke committed
77
* \param data_type
Guolin Ke's avatar
Guolin Ke committed
78
* \param nindptr number of rows in the matrix + 1
Guolin Ke's avatar
Guolin Ke committed
79
80
* \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
Guolin Ke's avatar
Guolin Ke committed
81
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
82
83
84
85
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out created dataset
* \return 0 when success, -1 when failure happens
*/
86
87
DllExport int LGBM_CreateDatasetFromCSR(const void* indptr,
  int indptr_type,
Guolin Ke's avatar
Guolin Ke committed
88
  const int32_t* indices,
89
  const void* data,
90
91
92
93
  int data_type,
  int64_t nindptr,
  int64_t nelem,
  int64_t num_col,
Guolin Ke's avatar
Guolin Ke committed
94
95
96
97
98
99
100
  const char* parameters,
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief create a dataset from CSC format
* \param col_ptr pointer to col headers
Guolin Ke's avatar
Guolin Ke committed
101
* \param col_ptr_type
Guolin Ke's avatar
Guolin Ke committed
102
103
* \param indices findex
* \param data fvalue
Guolin Ke's avatar
Guolin Ke committed
104
* \param data_type
Guolin Ke's avatar
Guolin Ke committed
105
* \param ncol_ptr number of rows in the matrix + 1
Guolin Ke's avatar
Guolin Ke committed
106
107
108
109
110
111
112
* \param nelem number of nonzero elements in the matrix
* \param num_row number of rows; when it's set to 0, then guess from data
* \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 success, -1 when failure happens
*/
113
114
DllExport int LGBM_CreateDatasetFromCSC(const void* col_ptr,
  int col_ptr_type,
Guolin Ke's avatar
Guolin Ke committed
115
116
  const int32_t* indices,
  const void* data,
117
118
119
120
  int data_type,
  int64_t ncol_ptr,
  int64_t nelem,
  int64_t num_row,
Guolin Ke's avatar
Guolin Ke committed
121
  const char* parameters,
Guolin Ke's avatar
Guolin Ke committed
122
123
124
125
126
127
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief create dataset from dense matrix
* \param data pointer to the data space
Guolin Ke's avatar
Guolin Ke committed
128
* \param data_type 0
Guolin Ke's avatar
Guolin Ke committed
129
130
* \param nrow number of rows
* \param ncol number columns
131
* \param is_row_major 1 for row major, 0 for column major
Guolin Ke's avatar
Guolin Ke committed
132
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
133
134
135
136
* \param reference used to align bin mapper with other dataset, nullptr means don't used
* \param out created dataset
* \return 0 when success, -1 when failure happens
*/
137
DllExport int LGBM_CreateDatasetFromMat(const void* data,
138
  int data_type,
Guolin Ke's avatar
Guolin Ke committed
139
140
  int32_t nrow,
  int32_t ncol,
141
  int is_row_major,
Guolin Ke's avatar
Guolin Ke committed
142
  const char* parameters,
Guolin Ke's avatar
Guolin Ke committed
143
144
145
146
147
148
149
  const DatesetHandle* reference,
  DatesetHandle* out);

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

/*!
* \brief save dateset to binary file
* \param handle a instance of dataset
* \param filename file name
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_DatasetSaveBinary(DatesetHandle handle,
  const char* filename);

/*!
* \brief set vector to a content in info
* \param handle a instance of dataset
* \param field_name field name, can be label, weight, group
165
* \param field_data pointer to vector
Guolin Ke's avatar
Guolin Ke committed
166
* \param num_element number of element in field_data
167
* \param type float_32:0, int32_t:1
Guolin Ke's avatar
Guolin Ke committed
168
169
170
171
172
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_DatasetSetField(DatesetHandle handle,
  const char* field_name,
  const void* field_data,
173
  int64_t num_element,
Guolin Ke's avatar
Guolin Ke committed
174
175
176
  int type);

/*!
177
* \brief get info vector from dataset
Guolin Ke's avatar
Guolin Ke committed
178
179
180
181
* \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
182
* \param out_type  float_32:0, int32_t:1
Guolin Ke's avatar
Guolin Ke committed
183
184
185
186
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_DatasetGetField(DatesetHandle handle,
  const char* field_name,
187
  int64_t* out_len,
Guolin Ke's avatar
Guolin Ke committed
188
189
190
191
192
193
194
195
196
197
  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
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_DatasetGetNumData(DatesetHandle handle,
198
  int64_t* out);
Guolin Ke's avatar
Guolin Ke committed
199
200
201
202
203
204
205
206

/*!
* \brief get number of features
* \param handle the handle to the dataset
* \param out The output of number of features
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_DatasetGetNumFeature(DatesetHandle handle,
207
  int64_t* out);
Guolin Ke's avatar
Guolin Ke committed
208
209
210
211
212

// --- start Booster interfaces

/*!
* \brief create an new boosting learner
Guolin Ke's avatar
Guolin Ke committed
213
* \param train_data training data set
Guolin Ke's avatar
Guolin Ke committed
214
215
216
217
218
219
220
* \param valid_datas validation data sets
* \param valid_names names of validation data sets
* \param n_valid_datas number of validation set
* \param parameters format: 'key1=value1 key2=value2'
* \prama out handle of created Booster
* \return 0 when success, -1 when failure happens
*/
221
222
DllExport int LGBM_BoosterCreate(const DatesetHandle train_data,
  const DatesetHandle valid_datas[],
Guolin Ke's avatar
Guolin Ke committed
223
224
225
226
227
228
  const char* valid_names[],
  int n_valid_datas,
  const char* parameters,
  BoosterHandle* out);

/*!
Guolin Ke's avatar
Guolin Ke committed
229
* \brief load an existing boosting from model file
Guolin Ke's avatar
Guolin Ke committed
230
* \param filename filename of model
Guolin Ke's avatar
Guolin Ke committed
231
* \param out handle of created Booster
Guolin Ke's avatar
Guolin Ke committed
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterLoadFromModelfile(
  const char* filename,
  BoosterHandle* out);

/*!
* \brief free obj in handle
* \param handle handle to be freed
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterFree(BoosterHandle handle);

/*!
* \brief update the model in one round
* \param handle handle
Guolin Ke's avatar
Guolin Ke committed
248
* \param is_finished 1 means finised(cannot split any more)
Guolin Ke's avatar
Guolin Ke committed
249
250
251
252
253
254
255
256
257
258
* \return 0 when success, -1 when failure happens
*/
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
259
* \param is_finished 1 means finised(cannot split any more)
Guolin Ke's avatar
Guolin Ke committed
260
261
262
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterUpdateOneIterCustom(BoosterHandle handle,
263
264
  const float* grad,
  const float* hess,
Guolin Ke's avatar
Guolin Ke committed
265
266
267
  int* is_finished);

/*!
Guolin Ke's avatar
Guolin Ke committed
268
* \brief get evaluation for training data and validation data
Guolin Ke's avatar
Guolin Ke committed
269
* \param handle handle
Guolin Ke's avatar
Guolin Ke committed
270
* \param data 0:training data, 1: 1st valid data, 2:2nd valid data ...
Guolin Ke's avatar
Guolin Ke committed
271
* \param out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
272
* \param out_result the string containing evaluation statistics, should allocate memory before call this function
Guolin Ke's avatar
Guolin Ke committed
273
274
* \return 0 when success, -1 when failure happens
*/
Guolin Ke's avatar
Guolin Ke committed
275
276
DllExport int LGBM_BoosterEval(BoosterHandle handle,
  int data,
277
  int64_t* out_len,
Guolin Ke's avatar
Guolin Ke committed
278
  float* out_results);
Guolin Ke's avatar
Guolin Ke committed
279

Guolin Ke's avatar
Guolin Ke committed
280
281
282
283
284
285
286
287
/*!
* \brief get raw score for training data, used to calculate gradients outside
* \param handle handle
* \param out_len len of output result
* \param out_result used to set a pointer to array
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterGetScore(BoosterHandle handle,
288
  int64_t* out_len,
Guolin Ke's avatar
Guolin Ke committed
289
290
  const float** out_result);

Guolin Ke's avatar
Guolin Ke committed
291
/*!
Guolin Ke's avatar
Guolin Ke committed
292
* \brief Get prediction for training data and validation data
Guolin Ke's avatar
Guolin Ke committed
293
this can be used to support customized eval function
Guolin Ke's avatar
Guolin Ke committed
294
* \param handle handle
Guolin Ke's avatar
Guolin Ke committed
295
* \param data 0:training data, 1: 1st valid data, 2:2nd valid data ...
Guolin Ke's avatar
Guolin Ke committed
296
* \param out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
297
* \param out_result used to set a pointer to array, should allocate memory before call this function
Guolin Ke's avatar
Guolin Ke committed
298
299
* \return 0 when success, -1 when failure happens
*/
Guolin Ke's avatar
Guolin Ke committed
300
DllExport int LGBM_BoosterGetPredict(BoosterHandle handle,
Guolin Ke's avatar
Guolin Ke committed
301
  int data,
302
  int64_t* out_len,
Guolin Ke's avatar
Guolin Ke committed
303
  float* out_result);
Guolin Ke's avatar
Guolin Ke committed
304

305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
/*!
* \brief make prediction for file
* \param handle handle
* \param predict_type
*          0:raw score
*          1:with transform(if needed)
*          2:leaf index
* \param n_used_trees number of used tree
* \param data_has_header data file has header or not
* \param data_filename filename of data file
* \param result_filename filename of result file
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterPredictForFile(BoosterHandle handle,
  int predict_type,
  int64_t n_used_trees,
  int data_has_header,
  const char* data_filename,
  const char* result_filename);

Guolin Ke's avatar
Guolin Ke committed
325
326
327
328
/*!
* \brief make prediction for an new data set
* \param handle handle
* \param indptr pointer to row headers
Guolin Ke's avatar
Guolin Ke committed
329
* \param indptr_type 
Guolin Ke's avatar
Guolin Ke committed
330
331
* \param indices findex
* \param data fvalue
Guolin Ke's avatar
Guolin Ke committed
332
* \param data_type
Guolin Ke's avatar
Guolin Ke committed
333
* \param nindptr number of rows in the matrix + 1
Guolin Ke's avatar
Guolin Ke committed
334
335
336
337
* \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
*          0:raw score
Guolin Ke's avatar
Guolin Ke committed
338
*          1:with transform(if needed)
Guolin Ke's avatar
Guolin Ke committed
339
340
*          2:leaf index
* \param n_used_trees number of used tree
Guolin Ke's avatar
Guolin Ke committed
341
* \param out_result used to set a pointer to array, should allocate memory before call this function
Guolin Ke's avatar
Guolin Ke committed
342
343
344
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterPredictForCSR(BoosterHandle handle,
345
346
  const void* indptr,
  int indptr_type,
Guolin Ke's avatar
Guolin Ke committed
347
  const int32_t* indices,
348
  const void* data,
349
350
351
352
  int data_type,
  int64_t nindptr,
  int64_t nelem,
  int64_t num_col,
Guolin Ke's avatar
Guolin Ke committed
353
  int predict_type,
354
  int64_t n_used_trees,
355
  double* out_result);
Guolin Ke's avatar
Guolin Ke committed
356
357
358
359
360

/*!
* \brief make prediction for an new data set
* \param handle handle
* \param data pointer to the data space
Guolin Ke's avatar
Guolin Ke committed
361
* \param data_type
Guolin Ke's avatar
Guolin Ke committed
362
363
* \param nrow number of rows
* \param ncol number columns
Guolin Ke's avatar
Guolin Ke committed
364
* \param is_row_major 1 for row major, 0 for column major
Guolin Ke's avatar
Guolin Ke committed
365
366
* \param predict_type
*          0:raw score
Guolin Ke's avatar
Guolin Ke committed
367
*          1:with transform(if needed)
Guolin Ke's avatar
Guolin Ke committed
368
369
*          2:leaf index
* \param n_used_trees number of used tree
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
Guolin Ke's avatar
Guolin Ke committed
371
372
373
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterPredictForMat(BoosterHandle handle,
374
  const void* data,
375
  int data_type,
Guolin Ke's avatar
Guolin Ke committed
376
377
  int32_t nrow,
  int32_t ncol,
Guolin Ke's avatar
Guolin Ke committed
378
  int is_row_major,
Guolin Ke's avatar
Guolin Ke committed
379
  int predict_type,
380
  int64_t n_used_trees,
381
  double* out_result);
Guolin Ke's avatar
Guolin Ke committed
382
383
384
385

/*!
* \brief save model into file
* \param handle handle
386
* \param num_used_model
Guolin Ke's avatar
Guolin Ke committed
387
388
389
390
* \param filename file name
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterSaveModel(BoosterHandle handle,
391
  int num_used_model,
Guolin Ke's avatar
Guolin Ke committed
392
393
  const char* filename);

394
395


Guolin Ke's avatar
Guolin Ke committed
396
397
// some help functions used to convert data

398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
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)>
RowFunctionFromCSR(const void* indptr, int indptr_type, const int32_t* indices, 
  const void* data, int data_type, int64_t nindptr, int64_t nelem);

std::function<std::vector<std::pair<int, double>>(int idx)>
ColumnFunctionFromCSC(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);

std::vector<double> 
SampleFromOneColumn(const std::vector<std::pair<int, double>>& data, const std::vector<size_t>& indices);

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