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