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