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

Function LGBM_DatasetAddFeaturesFrom

src/c_api.cpp:1068–1075  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1066}
1067
1068int LGBM_DatasetAddFeaturesFrom(DatasetHandle target,
1069 DatasetHandle source) {
1070 API_BEGIN();
1071 auto target_d = reinterpret_cast<Dataset*>(target);
1072 auto source_d = reinterpret_cast<Dataset*>(source);
1073 target_d->addFeaturesFrom(source_d);
1074 API_END();
1075}
1076
1077// ---- start of booster
1078

Callers

nothing calls this directly

Calls 1

addFeaturesFromMethod · 0.45

Tested by

no test coverage detected