| 1343 | } |
| 1344 | |
| 1345 | int LGBM_BoosterSetNumLabels(BoosterHandle handle, int num_labels) { |
| 1346 | API_BEGIN(); |
| 1347 | Booster* ref_booster = reinterpret_cast<Booster*>(handle); |
| 1348 | ref_booster->SetNumlabels(num_labels); |
| 1349 | API_END(); |
| 1350 | } |
| 1351 | |
| 1352 | int LGBM_BoosterPredictForCSR(BoosterHandle handle, |
| 1353 | const void* indptr, |
nothing calls this directly
no test coverage detected