3 writes to Max
Microsoft.ML.SearchSpace (3)
Converter\NumericOptionConverter.cs (3)
59
Max
= Convert.ToInt32(intOption.Max),
67
Max
= doubleOption.Max,
75
Max
= Convert.ToSingle(singleOption.Max),
3 references to Max
Microsoft.ML.SearchSpace (3)
Converter\NumericOptionConverter.cs (3)
43
"int" => new UniformIntOption(Convert.ToInt32(schema.Min), Convert.ToInt32(schema.
Max
), schema.LogBase, Convert.ToInt32(schema.Default)),
44
"float" => new UniformSingleOption(Convert.ToSingle(schema.Min), Convert.ToSingle(schema.
Max
), schema.LogBase, Convert.ToSingle(schema.Default)),
45
"double" => new UniformDoubleOption(Convert.ToDouble(schema.Min), Convert.ToDouble(schema.
Max
), schema.LogBase, Convert.ToDouble(schema.Default)),