4 overrides of Step
Microsoft.ML.SearchSpace (4)
Option\ChoiceOption.cs (1)
58public override int?[] Step => new int?[] { Choices.Length };
Option\NestOption.cs (1)
38public override int?[] Step
Option\UniformNumericOption.cs (1)
54public override int?[] Step => new int?[] { null };
SearchSpace.cs (1)
95public override int?[] Step
4 references to Step
Microsoft.ML.SearchSpace (4)
Option\NestOption.cs (1)
43.SelectMany(kv => kv.Value.Step)
Option\OptionBase.cs (2)
43/// Gets the step of this option. The <see cref="Step"/> is used to determine the number of grid this option should be divided into. In <see cref="ChoiceOption"/>, it's always the length of 44/// <see cref="ChoiceOption.Choices"/>. And in <see cref="UniformNumericOption"/>, it's always [null]. And in <see cref="ML.SearchSpace.SearchSpace"/>, it's a combination of all <see cref="Step"/> in its options.
SearchSpace.cs (1)
100.SelectMany(kv => kv.Value.Step)