1 type derived from OptionsBase
Microsoft.ML.Sweeper (1)
Algorithms\Grid.cs (1)
114public sealed class Options : OptionsBase
7 instantiations of OptionsBase
Microsoft.ML.Sweeper (4)
Algorithms\KdoSweeper.cs (2)
102_randomSweeper = new UniformRandomSweeper(env, new SweeperBase.OptionsBase(), _sweepParameters); 103_redundantSweeper = new UniformRandomSweeper(env, new SweeperBase.OptionsBase { Retries = 0 }, _sweepParameters);
Algorithms\NelderMead.cs (1)
27public IComponentFactory<IValueGenerator[], ISweeper> FirstBatchSweeper = ComponentFactoryUtils.CreateFromFunction<IValueGenerator[], ISweeper>((host, array) => new UniformRandomSweeper(host, new SweeperBase.OptionsBase(), array));
Algorithms\SmacSweeper.cs (1)
84_randomSweeper = new UniformRandomSweeper(env, new SweeperBase.OptionsBase(), _sweepParameters);
Microsoft.ML.Sweeper.Tests (3)
SweeperTest.cs (1)
24new SweeperBase.OptionsBase(),
TestSweeper.cs (2)
94var args = new SweeperBase.OptionsBase() 135var sweeper = new SimpleAsyncSweeper(env, new SweeperBase.OptionsBase
10 references to OptionsBase
Microsoft.ML.Sweeper (9)
Algorithms\Grid.cs (3)
39private readonly OptionsBase _options; 43protected SweeperBase(OptionsBase options, IHostEnvironment env, string name) 56protected SweeperBase(OptionsBase options, IHostEnvironment env, IValueGenerator[] sweepParameters, string name)
Algorithms\Random.cs (4)
10[assembly: LoadableClass(typeof(UniformRandomSweeper), typeof(SweeperBase.OptionsBase), typeof(SignatureSweeper), 12[assembly: LoadableClass(typeof(UniformRandomSweeper), typeof(SweeperBase.OptionsBase), typeof(SignatureSweeperFromParameterList), 22public UniformRandomSweeper(IHostEnvironment env, OptionsBase options) 27public UniformRandomSweeper(IHostEnvironment env, OptionsBase options, IValueGenerator[] sweepParameters)
AsyncSweeper.cs (2)
16[assembly: LoadableClass(typeof(SimpleAsyncSweeper), typeof(SweeperBase.OptionsBase), typeof(SignatureAsyncSweeper), 91public SimpleAsyncSweeper(IHostEnvironment env, UniformRandomSweeper.OptionsBase options)
Microsoft.ML.Sweeper.Tests (1)
TestSweeper.cs (1)
94var args = new SweeperBase.OptionsBase()