1 type derived from OptionsBase
Microsoft.ML.Sweeper (1)
Algorithms\Grid.cs (1)
114
public 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)
27
public 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)
24
new SweeperBase.
OptionsBase
(),
TestSweeper.cs (2)
94
var args = new SweeperBase.
OptionsBase
()
135
var sweeper = new SimpleAsyncSweeper(env, new SweeperBase.
OptionsBase
10 references to OptionsBase
Microsoft.ML.Sweeper (9)
Algorithms\Grid.cs (3)
39
private readonly
OptionsBase
_options;
43
protected SweeperBase(
OptionsBase
options, IHostEnvironment env, string name)
56
protected 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),
22
public UniformRandomSweeper(IHostEnvironment env,
OptionsBase
options)
27
public UniformRandomSweeper(IHostEnvironment env,
OptionsBase
options, IValueGenerator[] sweepParameters)
AsyncSweeper.cs (2)
16
[assembly: LoadableClass(typeof(SimpleAsyncSweeper), typeof(SweeperBase.
OptionsBase
), typeof(SignatureAsyncSweeper),
91
public SimpleAsyncSweeper(IHostEnvironment env, UniformRandomSweeper.
OptionsBase
options)
Microsoft.ML.Sweeper.Tests (1)
TestSweeper.cs (1)
94
var
args = new SweeperBase.OptionsBase()