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

Function GetFloatFeatureIndices

catboost/libs/model_interface/c_api.cpp:1032–1037  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1030}
1031
1032CATBOOST_API bool GetFloatFeatureIndices(ModelCalcerHandle* modelHandle, size_t** indices, size_t* count) {
1033 return GetFeatureIndices(
1034 [=] () { return GetModelFloatFeaturesIndices(*FULL_MODEL_PTR(modelHandle)); },
1035 indices,
1036 count);
1037}
1038
1039CATBOOST_API bool GetTextFeatureIndices(ModelCalcerHandle* modelHandle, size_t** indices, size_t* count) {
1040 return GetFeatureIndices(

Callers

nothing calls this directly

Calls 2

GetFeatureIndicesFunction · 0.85

Tested by

no test coverage detected