1 interface inheriting from IValueGenerator
Microsoft.ML.AutoML (1)
Sweepers\Parameters.cs (1)
195
internal interface INumericValueGenerator :
IValueGenerator
1 implementation of IValueGenerator
Microsoft.ML.AutoML (1)
Sweepers\Parameters.cs (1)
449
internal class DiscreteValueGenerator :
IValueGenerator
13 references to IValueGenerator
Microsoft.ML.AutoML (13)
PipelineSuggesters\PipelineSuggester.cs (2)
131
private static
IValueGenerator
[] ConvertToValueGenerators(IEnumerable<SweepableParam> hps)
133
var results = new
IValueGenerator
[hps.Count()];
Sweepers\Random.cs (1)
19
public UniformRandomSweeper(ArgumentsBase args,
IValueGenerator
[] sweepParameters)
Sweepers\SmacSweeper.cs (3)
22
public
IValueGenerator
[] SweptParameters;
72
private readonly
IValueGenerator
[] _sweepParameters;
267
IValueGenerator
sweepParam = _sweepParameters[i];
Sweepers\SweeperBase.cs (4)
13
internal delegate void SignatureSweeperFromParameterList(
IValueGenerator
[] sweepParameters);
22
public
IValueGenerator
[] SweptParameters;
34
protected readonly
IValueGenerator
[] SweepParameters;
43
protected SweeperBase(ArgumentsBase args,
IValueGenerator
[] sweepParameters, string name)
Sweepers\SweeperProbabilityUtils.cs (3)
65
public static float[] ParameterSetAsFloatArray(
IValueGenerator
[] sweepParams, ParameterSet ps, bool expandCategoricals = true)
74
var
sweepParam = sweepParams[i];
125
public static ParameterSet FloatArrayAsParameterSet(
IValueGenerator
[] sweepParams, float[] array, bool expandedCategoricals = true)