MCPcopy Create free account
hub / github.com/catboost/catboost / GetCatFeatureIndices

Function GetCatFeatureIndices

catboost/libs/model_interface/c_api.cpp:1025–1030  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1023}
1024
1025CATBOOST_API bool GetCatFeatureIndices(ModelCalcerHandle* modelHandle, size_t** indices, size_t* count) {
1026 return GetFeatureIndices(
1027 [=] () { return GetModelCatFeaturesIndices(*FULL_MODEL_PTR(modelHandle)); },
1028 indices,
1029 count);
1030}
1031
1032CATBOOST_API bool GetFloatFeatureIndices(ModelCalcerHandle* modelHandle, size_t** indices, size_t* count) {
1033 return GetFeatureIndices(

Callers

nothing calls this directly

Calls 2

GetFeatureIndicesFunction · 0.85

Tested by

no test coverage detected