| 1292 | } |
| 1293 | |
| 1294 | int LGBM_BoosterGetNumPredict(BoosterHandle handle, |
| 1295 | int data_idx, |
| 1296 | int64_t* out_len) { |
| 1297 | API_BEGIN(); |
| 1298 | auto boosting = reinterpret_cast<Booster*>(handle)->GetBoosting(); |
| 1299 | *out_len = boosting->GetNumPredictAt(data_idx); |
| 1300 | API_END(); |
| 1301 | } |
| 1302 | |
| 1303 | int LGBM_BoosterGetPredict(BoosterHandle handle, |
| 1304 | int data_idx, |
no test coverage detected