MCPcopy Create free account
hub / github.com/antmachineintelligence/mtgbmcode / LGBM_BoosterGetFeatureNames

Function LGBM_BoosterGetFeatureNames

src/c_api.cpp:1265–1270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1263}
1264
1265int LGBM_BoosterGetFeatureNames(BoosterHandle handle, int* out_len, char** out_strs) {
1266 API_BEGIN();
1267 Booster* ref_booster = reinterpret_cast<Booster*>(handle);
1268 *out_len = ref_booster->GetFeatureNames(out_strs);
1269 API_END();
1270}
1271
1272int LGBM_BoosterGetNumFeature(BoosterHandle handle, int* out_len) {
1273 API_BEGIN();

Callers

nothing calls this directly

Calls 1

GetFeatureNamesMethod · 0.45

Tested by

no test coverage detected