Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tianlh
LightGBM-DCU
Commits
65e711a2
Commit
65e711a2
authored
Nov 24, 2016
by
Allard van Mossel
Committed by
Guolin Ke
Nov 24, 2016
Browse files
Fixed inconsistencies and missing C-API documentation (#96)
parent
405f45a0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
include/LightGBM/c_api.h
include/LightGBM/c_api.h
+17
-17
No files found.
include/LightGBM/c_api.h
View file @
65e711a2
...
...
@@ -307,10 +307,10 @@ DllExport int LGBM_BoosterGetPredict(BoosterHandle handle,
* \brief make prediction for file
* \param handle handle
* \param predict_type
* 0:
raw score
* 1:
with transform(if needed)
* 0:
normal, with transform (if needed)
* 1:
raw score
* 2:leaf index
* \param n_used_trees number of used tree
* \param n_used_trees number of used tree
, < 0 means no limit
* \param data_has_header data file has header or not
* \param data_filename filename of data file
* \param result_filename filename of result file
...
...
@@ -335,10 +335,10 @@ DllExport int LGBM_BoosterPredictForFile(BoosterHandle handle,
* \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
* 1:
with transform(if needed)
* 0:
normal, with transform (if needed)
* 1:
raw score
* 2:leaf index
* \param n_used_trees number of used tree
* \param n_used_trees number of used tree
, < 0 means no limit
* \param out_result used to set a pointer to array, should allocate memory before call this function
* \return 0 when success, -1 when failure happens
*/
...
...
@@ -364,10 +364,10 @@ DllExport int LGBM_BoosterPredictForCSR(BoosterHandle handle,
* \param ncol number columns
* \param is_row_major 1 for row major, 0 for column major
* \param predict_type
* 0:
raw score
* 1:
with transform(if needed)
* 0:
normal, with transform (if needed)
* 1:
raw score
* 2:leaf index
* \param n_used_trees number of used tree
* \param n_used_trees number of used tree
, < 0 means no limit
* \param out_result used to set a pointer to array, should allocate memory before call this function
* \return 0 when success, -1 when failure happens
*/
...
...
@@ -384,7 +384,7 @@ DllExport int LGBM_BoosterPredictForMat(BoosterHandle handle,
/*!
* \brief save model into file
* \param handle handle
* \param num_used_model
* \param num_used_model
, < 0 means no limit
* \param filename file name
* \return 0 when success, -1 when failure happens
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment