2 implementations of ProposeSweeps
Microsoft.ML.AutoML (2)
Sweepers\SmacSweeper.cs (1)
82public ParameterSet[] ProposeSweeps(int maxSweeps, IEnumerable<IRunResult> previousRuns = null)
Sweepers\SweeperBase.cs (1)
49public virtual ParameterSet[] ProposeSweeps(int maxSweeps, IEnumerable<IRunResult> previousRuns = null)
3 references to ProposeSweeps
Microsoft.ML.AutoML (3)
Sweepers\SmacSweeper.cs (3)
90return _randomSweeper.ProposeSweeps(Math.Min(numOfCandidates, _args.NumberInitialPopulation - numRuns), previousRuns); 160ParameterSet[] randomChallengers = _randomSweeper.ProposeSweeps(numOfCandidates - eiChallengers.Length, previousRuns); 195ParameterSet[] randomConfigs = _randomSweeper.ProposeSweeps(_args.NumRandomEISearchConfigurations, previousRuns);