| 1228 | } |
| 1229 | |
| 1230 | int LGBM_BoosterGetCurrentIteration(BoosterHandle handle, int* out_iteration) { |
| 1231 | API_BEGIN(); |
| 1232 | Booster* ref_booster = reinterpret_cast<Booster*>(handle); |
| 1233 | *out_iteration = ref_booster->GetBoosting()->GetCurrentIteration(); |
| 1234 | API_END(); |
| 1235 | } |
| 1236 | |
| 1237 | int LGBM_BoosterNumModelPerIteration(BoosterHandle handle, int* out_tree_per_iteration) { |
| 1238 | API_BEGIN(); |
no test coverage detected