1 write to _modelLocation
Microsoft.ML.Vision (1)
DnnRetrainTransform.cs (1)
533
_modelLocation
= Path.IsPathRooted(modelLocation) ? modelLocation : Path.Combine(Directory.GetCurrentDirectory(), modelLocation);
7 references to _modelLocation
Microsoft.ML.Vision (7)
DnnRetrainTransform.cs (7)
686
var isFrozen = !IsSavedModel(_env,
_modelLocation
);
705
Path.Combine(
_modelLocation
, DefaultModelFileNames.Graph),
706
Path.Combine(
_modelLocation
, DefaultModelFileNames.VariablesFolder, DefaultModelFileNames.Data),
707
Path.Combine(
_modelLocation
, DefaultModelFileNames.VariablesFolder, DefaultModelFileNames.Index),
714
var relativePath = fullPath.Substring(
_modelLocation
.Length + 1);
748
if (IsSavedModel(_env,
_modelLocation
) && _isTemporarySavedModel)
750
DeleteFolderWithRetries(Host,
_modelLocation
);