Skip to content

Commit fa8e14b

Browse files
committed
set exploration time default in CLI to half hour (dotnet#3640)
1 parent 149a248 commit fa8e14b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mlnet/Commands/CommandDefinitions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Option LabelColumnIndex() =>
8787

8888
Option MaxExplorationTime() =>
8989
new Option(new List<string>() { "--max-exploration-time", "-x" }, "Maximum time in seconds for exploring models with best configuration.",
90-
new Argument<uint>(defaultValue: 10));
90+
new Argument<uint>(defaultValue: 60*30));
9191

9292
Option Verbosity() =>
9393
new Option(new List<string>() { "--verbosity", "-V" }, "Output verbosity choices: q[uiet], m[inimal] (by default) and diag[nostic].",

0 commit comments

Comments
 (0)