Implemented interface member:
property
MetricValue
Microsoft.ML.IRunResult<T>.MetricValue
11 references to MetricValue
Microsoft.ML.Sweeper (11)
Algorithms\KdoSweeper.cs (6)
185children.Add(SampleChild(parent.ParameterSet, parent.MetricValue, history.Length, previousRuns, rMean, rVar, parent.IsMetricMaximizing)); 346return (from RunResult r in previousRuns where _randomParamSets.Contains(r.ParameterSet) select r.MetricValue).ToArray(); 367weights[labelToIndex[r.ParameterSet[param.Name].ValueText]] += r.MetricValue; 379previousRuns.Cast<RunResult>().Where(r => r.HasMetricValue).Max(r => r.MetricValue) : 380previousRuns.Cast<RunResult>().Where(r => r.HasMetricValue).Min(r => r.MetricValue); 413weights[labelToIndex[r.ParameterSet[param.Name].ValueText]] += r.MetricValue;
Algorithms\SmacSweeper.cs (4)
121targets[i] = (float)r.MetricValue; 197double bestVal = bestRun.IsMetricMaximizing ? bestRun.MetricValue : worstRun.MetricValue - bestRun.MetricValue;
ISweeper.cs (1)
263get { return MetricValue; }