From d84ccd5179d9560a5211db876b952344eda31e2a Mon Sep 17 00:00:00 2001 From: Dmitry Akhutin Date: Wed, 1 May 2019 15:50:38 -0700 Subject: [PATCH] set exploration time default in CLI to half hour --- src/mlnet/Commands/CommandDefinitions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlnet/Commands/CommandDefinitions.cs b/src/mlnet/Commands/CommandDefinitions.cs index 20ac207632..953b10859b 100644 --- a/src/mlnet/Commands/CommandDefinitions.cs +++ b/src/mlnet/Commands/CommandDefinitions.cs @@ -87,7 +87,7 @@ Option LabelColumnIndex() => Option MaxExplorationTime() => new Option(new List() { "--max-exploration-time", "-x" }, "Maximum time in seconds for exploring models with best configuration.", - new Argument(defaultValue: 10)); + new Argument(defaultValue: 60*30)); Option Verbosity() => new Option(new List() { "--verbosity", "-V" }, "Output verbosity choices: q[uiet], m[inimal] (by default) and diag[nostic].",