getModelFolderPath method

String getModelFolderPath({
  1. required String modelId,
  2. required String framework,
})

Get the model folder path without creating

Implementation

String getModelFolderPath({
  required String modelId,
  required String framework,
}) {
  _ensureInitialized();
  return path.join(_baseDirectory!.path, 'Models', framework, modelId);
}