c_api.h 10.8 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
11
12
13

/*!
* 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
* The reason is becaused they are called frequently, the type-conversion on them maybe time cost. 
*/

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

/*!
* \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();


// --- start Dataset inferfaces

/*!
* \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
43
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
* \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
* \param indices findex
* \param data fvalue
67
* \param float_type 0 for float_32 1 for float_64
Guolin Ke's avatar
Guolin Ke committed
68
69
70
* \param nindptr number of rows in the matix + 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
Guolin Ke's avatar
Guolin Ke committed
71
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
72
73
74
75
* \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
*/
Guolin Ke's avatar
Guolin Ke committed
76
77
DllExport int LGBM_CreateDatasetFromCSR(const int32_t* indptr,
  const int32_t* indices,
78
79
  const void* data,
  int float_type,
Guolin Ke's avatar
Guolin Ke committed
80
81
  uint64_t nindptr,
  uint64_t nelem,
Guolin Ke's avatar
Guolin Ke committed
82
83
84
85
86
87
88
89
90
91
92
  uint64_t num_col,
  const char* parameters,
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief create a dataset from CSC format
* \param col_ptr pointer to col headers
* \param indices findex
* \param data fvalue
* \param float_type 0 for float_32 1 for float_64
Guolin Ke's avatar
Guolin Ke committed
93
* \param ncol_ptr number of rows in the matix + 1
Guolin Ke's avatar
Guolin Ke committed
94
95
96
97
98
99
100
101
102
103
104
105
106
107
* \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
*/
DllExport int LGBM_CreateDatasetFromCSC(const int32_t* col_ptr,
  const int32_t* indices,
  const void* data,
  int float_type,
  uint64_t ncol_ptr,
  uint64_t nelem,
  uint64_t num_row,
Guolin Ke's avatar
Guolin Ke committed
108
  const char* parameters,
Guolin Ke's avatar
Guolin Ke committed
109
110
111
112
113
114
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief create dataset from dense matrix
* \param data pointer to the data space
115
* \param float_type 0 for float_32 1 for float_64
Guolin Ke's avatar
Guolin Ke committed
116
117
* \param nrow number of rows
* \param ncol number columns
118
* \param is_row_major 1 for row major, 0 for column major
Guolin Ke's avatar
Guolin Ke committed
119
* \param parameters additional parameters
Guolin Ke's avatar
Guolin Ke committed
120
121
122
123
* \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
*/
124
125
DllExport int LGBM_CreateDatasetFromMat(const void* data,
  int float_type,
Guolin Ke's avatar
Guolin Ke committed
126
127
  int32_t nrow,
  int32_t ncol,
128
  int is_row_major,
Guolin Ke's avatar
Guolin Ke committed
129
  const char* parameters,
Guolin Ke's avatar
Guolin Ke committed
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  const DatesetHandle* reference,
  DatesetHandle* out);

/*!
* \brief free space for dataset
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_DatasetFree(DatesetHandle* handle);

/*!
* \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
152
* \param field_data pointer to vector
Guolin Ke's avatar
Guolin Ke committed
153
* \param num_element number of element in field_data
154
* \param type float_32:0, uint32_t:1
Guolin Ke's avatar
Guolin Ke committed
155
156
157
158
159
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_DatasetSetField(DatesetHandle handle,
  const char* field_name,
  const void* field_data,
Guolin Ke's avatar
Guolin Ke committed
160
  uint64_t num_element,
Guolin Ke's avatar
Guolin Ke committed
161
162
163
  int type);

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

/*!
* \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,
  uint64_t* out);

// --- start Booster interfaces

/*!
* \brief create an new boosting learner
* \param train_data traning data set
* \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
*/
208
209
DllExport int LGBM_BoosterCreate(const DatesetHandle train_data,
  const DatesetHandle valid_datas[],
Guolin Ke's avatar
Guolin Ke committed
210
211
212
213
214
215
216
217
  const char* valid_names[],
  int n_valid_datas,
  const char* parameters,
  BoosterHandle* out);

/*!
* \brief load an exsiting boosting from model file
* \param filename filename of model
Guolin Ke's avatar
Guolin Ke committed
218
* \param out handle of created Booster
Guolin Ke's avatar
Guolin Ke committed
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
* \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
235
* \param is_finished 1 means finised(cannot split any more)
Guolin Ke's avatar
Guolin Ke committed
236
237
238
239
240
241
242
243
244
245
* \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
246
* \param is_finished 1 means finised(cannot split any more)
Guolin Ke's avatar
Guolin Ke committed
247
248
249
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterUpdateOneIterCustom(BoosterHandle handle,
250
251
  const float* grad,
  const float* hess,
Guolin Ke's avatar
Guolin Ke committed
252
253
254
255
256
  int* is_finished);

/*!
* \brief get evaluation for training data and validation datas
* \param handle handle
Guolin Ke's avatar
Guolin Ke committed
257
* \param data 0:training data, 1: 1st valid data, 2:2nd valid data ...
Guolin Ke's avatar
Guolin Ke committed
258
* \param out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
259
* \param out_result the string containing evaluation statistics, should allocate memory before call this function
Guolin Ke's avatar
Guolin Ke committed
260
261
* \return 0 when success, -1 when failure happens
*/
Guolin Ke's avatar
Guolin Ke committed
262
263
DllExport int LGBM_BoosterEval(BoosterHandle handle,
  int data,
264
  uint64_t* out_len,
Guolin Ke's avatar
Guolin Ke committed
265
  float* out_results);
Guolin Ke's avatar
Guolin Ke committed
266

Guolin Ke's avatar
Guolin Ke committed
267
268
269
270
271
272
273
274
275
276
277
/*!
* \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,
  uint64_t* out_len,
  const float** out_result);

Guolin Ke's avatar
Guolin Ke committed
278
279
/*!
* \brief make prediction for training data and validation datas
Guolin Ke's avatar
Guolin Ke committed
280
this can be used to support customized eval function
Guolin Ke's avatar
Guolin Ke committed
281
* \param handle handle
Guolin Ke's avatar
Guolin Ke committed
282
* \param data 0:training data, 1: 1st valid data, 2:2nd valid data ...
Guolin Ke's avatar
Guolin Ke committed
283
* \param out_len len of output result
Guolin Ke's avatar
Guolin Ke committed
284
* \param out_result used to set a pointer to array, should allocate memory before call this function
Guolin Ke's avatar
Guolin Ke committed
285
286
* \return 0 when success, -1 when failure happens
*/
Guolin Ke's avatar
Guolin Ke committed
287
DllExport int LGBM_BoosterGetPredict(BoosterHandle handle,
Guolin Ke's avatar
Guolin Ke committed
288
  int data,
289
  uint64_t* out_len,
Guolin Ke's avatar
Guolin Ke committed
290
  float* out_result);
Guolin Ke's avatar
Guolin Ke committed
291
292
293
294
295
296
297

/*!
* \brief make prediction for an new data set
* \param handle handle
* \param indptr pointer to row headers
* \param indices findex
* \param data fvalue
Guolin Ke's avatar
Guolin Ke committed
298
* \param float_type 0:float_32 1:float64
Guolin Ke's avatar
Guolin Ke committed
299
300
301
302
303
* \param nindptr number of rows in the matix + 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
*          0:raw score
Guolin Ke's avatar
Guolin Ke committed
304
*          1:with transform(if needed)
Guolin Ke's avatar
Guolin Ke committed
305
306
*          2:leaf index
* \param n_used_trees number of used tree
Guolin Ke's avatar
Guolin Ke committed
307
* \param out_result used to set a pointer to array, should allocate memory before call this function
Guolin Ke's avatar
Guolin Ke committed
308
309
310
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterPredictForCSR(BoosterHandle handle,
Guolin Ke's avatar
Guolin Ke committed
311
312
  const int32_t* indptr,
  const int32_t* indices,
313
314
  const void* data,
  int float_type,
Guolin Ke's avatar
Guolin Ke committed
315
316
317
318
319
  uint64_t nindptr,
  uint64_t nelem,
  uint64_t num_col,
  int predict_type,
  uint64_t n_used_trees,
320
  double* out_result);
Guolin Ke's avatar
Guolin Ke committed
321
322
323
324
325

/*!
* \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
326
* \param float_type 0:float_32 1:float64
Guolin Ke's avatar
Guolin Ke committed
327
328
* \param nrow number of rows
* \param ncol number columns
Guolin Ke's avatar
Guolin Ke committed
329
* \param is_row_major 1 for row major, 0 for column major
Guolin Ke's avatar
Guolin Ke committed
330
331
* \param predict_type
*          0:raw score
Guolin Ke's avatar
Guolin Ke committed
332
*          1:with transform(if needed)
Guolin Ke's avatar
Guolin Ke committed
333
334
*          2:leaf index
* \param n_used_trees number of used tree
Guolin Ke's avatar
Guolin Ke committed
335
* \param out_result used to set a pointer to array, should allocate memory before call this function
Guolin Ke's avatar
Guolin Ke committed
336
337
338
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterPredictForMat(BoosterHandle handle,
339
340
  const void* data,
  int float_type,
Guolin Ke's avatar
Guolin Ke committed
341
342
  int32_t nrow,
  int32_t ncol,
Guolin Ke's avatar
Guolin Ke committed
343
  int is_row_major,
Guolin Ke's avatar
Guolin Ke committed
344
345
  int predict_type,
  uint64_t n_used_trees,
346
  double* out_result);
Guolin Ke's avatar
Guolin Ke committed
347
348
349
350

/*!
* \brief save model into file
* \param handle handle
351
* \param num_used_model
Guolin Ke's avatar
Guolin Ke committed
352
353
354
355
* \param filename file name
* \return 0 when success, -1 when failure happens
*/
DllExport int LGBM_BoosterSaveModel(BoosterHandle handle,
356
  int num_used_model,
Guolin Ke's avatar
Guolin Ke committed
357
358
359
  const char* filename);

#endif // LIGHTGBM_C_API_H_