1 interface inheriting from IRunResult
Microsoft.ML.AutoML (1)
Sweepers\ISweeper.cs (1)
167
internal interface IRunResult<T> :
IRunResult
14 references to IRunResult
Microsoft.ML.AutoML (14)
Experiment\SuggestedPipelineRunDetails\SuggestedPipelineRunDetail.cs (1)
29
public
IRunResult
ToRunResult(bool isMetricMaximizing)
Sweepers\ISweeper.cs (4)
24
ParameterSet[] ProposeSweeps(int maxSweeps, IEnumerable<
IRunResult
> previousRuns = null);
160
internal interface IRunResult : IComparable<
IRunResult
>
208
public int CompareTo(
IRunResult
other)
225
IComparable
IRunResult
.MetricValue
Sweepers\SmacSweeper.cs (8)
82
public ParameterSet[] ProposeSweeps(int maxSweeps, IEnumerable<
IRunResult
> previousRuns = null)
93
List<
IRunResult
> viableRuns = new List<
IRunResult
>();
107
private FastForestRegressionModelParameters FitModel(IEnumerable<
IRunResult
> previousRuns)
151
private ParameterSet[] GenerateCandidateConfigurations(int numOfCandidates, IEnumerable<
IRunResult
> previousRuns, FastForestRegressionModelParameters forest)
179
private ParameterSet[] GreedyPlusRandomSearch(ParameterSet[] parents, FastForestRegressionModelParameters forest, int numOfCandidates, IEnumerable<
IRunResult
> previousRuns)
207
foreach (
var
previousRun in previousRuns)
387
private ParameterSet[] GetKBestConfigurations(IEnumerable<
IRunResult
> previousRuns, int k = 10)
Sweepers\SweeperBase.cs (1)
49
public virtual ParameterSet[] ProposeSweeps(int maxSweeps, IEnumerable<
IRunResult
> previousRuns = null)