Skip to content

Commit 7a2ac5c

Browse files
LittleLittleCloudmichaelgsharpluisquintanilla
authored
Update timeout error message in AutoMLExperiment.cs (#6613)
* Update AutoMLExperiment.cs * Update src/Microsoft.ML.AutoML/AutoMLExperiment/AutoMLExperiment.cs Co-authored-by: Luis Quintanilla <[email protected]> --------- Co-authored-by: Michael Sharp <[email protected]> Co-authored-by: Luis Quintanilla <[email protected]>
1 parent 69b67c4 commit 7a2ac5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.AutoML/AutoMLExperiment/AutoMLExperiment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ Abandoning Trial {trialSettings.TrialId} and continue training.
341341
trialResultManager?.Save();
342342
if (_bestTrialResult == null)
343343
{
344-
throw new TimeoutException("Training time finished without completing a trial run");
344+
throw new TimeoutException("Training time finished without completing a successful trial. Either no trial completed or the metric for all completed trials are NaN or Infinity");
345345
}
346346
else
347347
{

0 commit comments

Comments
 (0)