We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43c62ae commit b9c4f5fCopy full SHA for b9c4f5f
src/Microsoft.ML.Auto/API/ExperimentSettings.cs
@@ -18,7 +18,7 @@ public class ExperimentSettings
18
/// (Please note: for an experiment with high runtime operating on a large dataset, opting to keep models in
19
/// memory could cause a system to run out of memory.)
20
/// </summary>
21
- public DirectoryInfo ModelDirectory { get; set; } = null;
+ public DirectoryInfo ModelDirectory { get; set; } = new DirectoryInfo(Path.Combine(Path.GetTempPath(), "Microsoft.ML.Auto"));
22
23
/// <summary>
24
/// This setting controls whether or not an AutoML experiment will make use of ML.NET-provided caching.
0 commit comments