getModelFolderPath method
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);
}