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