3 instantiations of AggregateTrainingStopManager
Microsoft.ML.AutoML (1)
AutoMLExperiment\AutoMLExperiment.cs (1)
226
return new
AggregateTrainingStopManager
(logger, mostRecentAddedStopServices.ToArray());
Microsoft.ML.AutoML.Tests (2)
StopTrainingManagerTests.cs (2)
75
var aggregationManager = new
AggregateTrainingStopManager
(null, timeoutManager, cancellationManager);
97
aggregationManager = new
AggregateTrainingStopManager
(null, new TimeoutTrainingStopManager(TimeSpan.FromSeconds(100), null), cancellationManager);
4 references to AggregateTrainingStopManager
Microsoft.ML.AutoML (3)
AutoMLExperiment\AutoMLExperiment.cs (2)
233
var
aggregateTrainingStopManager = serviceProvider.GetRequiredService<
AggregateTrainingStopManager
>();
Tuner\AutoZeroTuner.cs (1)
27
public AutoZeroTuner(SweepablePipeline pipeline,
AggregateTrainingStopManager
aggregateTrainingStopManager, IEvaluateMetricManager evaluateMetricManager, AutoMLExperiment.AutoMLExperimentSettings settings)
Microsoft.ML.AutoML.Tests (1)
StopTrainingManagerTests.cs (1)
75
var
aggregationManager = new AggregateTrainingStopManager(null, timeoutManager, cancellationManager);