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