4 implementations of ISweeper
Microsoft.ML.Sweeper (4)
Algorithms\Grid.cs (1)
28public abstract class SweeperBase : ISweeper
Algorithms\KdoSweeper.cs (1)
37public sealed class KdoSweeper : ISweeper
Algorithms\NelderMead.cs (1)
19public sealed class NelderMeadSweeper : ISweeper
Algorithms\SmacSweeper.cs (1)
24public sealed class SmacSweeper : ISweeper
16 references to ISweeper
Microsoft.ML.Sweeper (14)
Algorithms\KdoSweeper.cs (2)
78private readonly ISweeper _randomSweeper; 79private readonly ISweeper _redundantSweeper;
Algorithms\NelderMead.cs (3)
27public IComponentFactory<IValueGenerator[], ISweeper> FirstBatchSweeper = ComponentFactoryUtils.CreateFromFunction<IValueGenerator[], ISweeper>((host, array) => new UniformRandomSweeper(host, new SweeperBase.OptionsBase(), array)); 68private readonly ISweeper _initSweeper;
Algorithms\SmacSweeper.cs (1)
62private readonly ISweeper _randomSweeper;
AsyncSweeper.cs (6)
66/// Expose existing <see cref="ISweeper"/>s as <see cref="IAsyncSweeper"/> with no synchronization over the past runs. 73private readonly ISweeper _baseSweeper; 81private SimpleAsyncSweeper(ISweeper baseSweeper) 146/// An wrapper around <see cref="ISweeper"/> which enforces determinism by imposing synchronization over past runs. 156public IComponentFactory<ISweeper> Sweeper; 173private readonly ISweeper _baseSweeper;
SweepCommand.cs (2)
31public IComponentFactory<ISweeper> Sweeper; 57private readonly ISweeper _sweeper;
Microsoft.ML.Sweeper.Tests (2)
TestSweeper.cs (2)
374FirstBatchSweeper = ComponentFactoryUtils.CreateFromFunction<IValueGenerator[], ISweeper>( 552FirstBatchSweeper = ComponentFactoryUtils.CreateFromFunction<IValueGenerator[], ISweeper>(