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

Method GetModelDimensionsCount

catboost/node-package/src/model.cpp:291–296  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

289}
290
291Napi::Value TModel::GetModelDimensionsCount(const Napi::CallbackInfo& info) {
292 Napi::Env env = info.Env();
293 const size_t count = GetDimensionsCount(this->Handle);
294
295 return Napi::Number::New(env, count);
296}
297
298Napi::Value TModel::GetPredictionDimensionsCount(const Napi::CallbackInfo& info) {
299 Napi::Env env = info.Env();

Callers

nothing calls this directly

Calls 2

GetDimensionsCountFunction · 0.85
NewFunction · 0.50

Tested by

no test coverage detected