7 instantiations of TrialResult
Microsoft.ML.AutoML (7)
API\BinaryClassificationExperiment.cs (2)
406return new TrialResult<BinaryClassificationMetrics>() 432return new TrialResult<BinaryClassificationMetrics>()
API\MulticlassClassificationExperiment.cs (2)
384return new TrialResult<MulticlassClassificationMetrics>() 410return new TrialResult<MulticlassClassificationMetrics>()
API\RegressionExperiment.cs (2)
411return Task.FromResult(new TrialResult<RegressionMetrics>() 437return Task.FromResult(new TrialResult<RegressionMetrics>()
AutoMLExperiment\IMonitor.cs (1)
117var result = new TrialResult<TMetrics>
11 references to TrialResult
Microsoft.ML.AutoML (11)
AutoMLExperiment\IMonitor.cs (9)
77this.RunDetails = new List<TrialResult<TMetrics>>(); 80public event EventHandler<TrialResult<TMetrics>> OnTrialCompleted; 82public List<TrialResult<TMetrics>> RunDetails { get; } 84public TrialResult<TMetrics> BestRun { get; private set; } 89if (result is TrialResult<TMetrics> binaryClassificationResult) 95throw new ArgumentException($"result must be of type {typeof(TrialResult<TMetrics>)}"); 102if (result is TrialResult<TMetrics> metricResult) 109throw new ArgumentException($"result must be of type {typeof(TrialResult<TMetrics>)}"); 117var result = new TrialResult<TMetrics>
Utils\BestResultUtil.cs (2)
99public static RunDetail<TMetrics> ToRunDetail<TMetrics>(MLContext context, TrialResult<TMetrics> result, SweepablePipeline pipeline) 111public static CrossValidationRunDetail<TMetrics> ToCrossValidationRunDetail<TMetrics>(MLContext context, TrialResult<TMetrics> result, SweepablePipeline pipeline)