1 write to _modelLocation
Microsoft.ML.Vision (1)
DnnRetrainTransform.cs (1)
534
_modelLocation
= Path.IsPathRooted(modelLocation) ? modelLocation : Path.Combine(Directory.GetCurrentDirectory(), modelLocation);
7 references to _modelLocation
Microsoft.ML.Vision (7)
DnnRetrainTransform.cs (7)
687
var isFrozen = !IsSavedModel(_env,
_modelLocation
);
706
Path.Combine(
_modelLocation
, DefaultModelFileNames.Graph),
707
Path.Combine(
_modelLocation
, DefaultModelFileNames.VariablesFolder, DefaultModelFileNames.Data),
708
Path.Combine(
_modelLocation
, DefaultModelFileNames.VariablesFolder, DefaultModelFileNames.Index),
715
var relativePath = fullPath.Substring(
_modelLocation
.Length + 1);
749
if (IsSavedModel(_env,
_modelLocation
) && _isTemporarySavedModel)
751
DeleteFolderWithRetries(Host,
_modelLocation
);