4 writes to WorkspacePath
Microsoft.ML.TensorFlow.Tests (3)
TensorflowTests.cs (3)
1513
WorkspacePath
= workspacePath,
1670
WorkspacePath
= workspacePath,
1805
WorkspacePath
= workspacePath,
Microsoft.ML.Vision (1)
ImageClassificationTrainer.cs (1)
541
options.
WorkspacePath
= GetTemporaryDirectory(env);
13 references to WorkspacePath
Microsoft.ML.TensorFlow.Tests (2)
TensorflowTests.cs (2)
1747
Assert.True(File.Exists(Path.Combine(options.
WorkspacePath
, options.TrainSetBottleneckCachedValuesFileName)));
1748
Assert.True(File.Exists(Path.Combine(options.
WorkspacePath
, options.ValidationSetBottleneckCachedValuesFileName)));
Microsoft.ML.Vision (11)
ImageClassificationTrainer.cs (11)
539
if (string.IsNullOrEmpty(options.
WorkspacePath
))
570
_checkpointPath = Path.Combine(_options.
WorkspacePath
, _options.FinalModelPrefix +
572
_sizeFile = Path.Combine(_options.
WorkspacePath
, "TrainingSetSize.txt");
659
if (!Directory.Exists(_options.
WorkspacePath
))
661
Directory.CreateDirectory(_options.
WorkspacePath
);
668
string trainSetBottleneckCachedValuesFilePath = Path.Combine(_options.
WorkspacePath
,
671
string validationSetBottleneckCachedValuesFilePath = Path.Combine(_options.
WorkspacePath
,
872
Path.Combine(_options.
WorkspacePath
, _options.ValidationSetBottleneckCachedValuesFileName),
970
trainWriter = tf.summary.FileWriter(Path.Combine(_options.
WorkspacePath
, "train"),
1150
if (_cleanupWorkspace && Directory.Exists(_options.
WorkspacePath
))
1154
Directory.Delete(_options.
WorkspacePath
, true);