| 289 | } |
| 290 | |
| 291 | Napi::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 | |
| 298 | Napi::Value TModel::GetPredictionDimensionsCount(const Napi::CallbackInfo& info) { |
| 299 | Napi::Env env = info.Env(); |
nothing calls this directly
no test coverage detected