1 write to Max
Microsoft.ML.AutoML (1)
PipelineSuggesters\PipelineSuggester.cs (1)
172
Max
= lp.Max,
15 references to Max
Microsoft.ML.AutoML (15)
Sweepers\Parameters.cs (15)
213
Runtime.Contracts.Assert(args.Min < args.
Max
, "min must be less than max");
229
? Math.Pow(1.0 * _args.
Max
/ _args.Min, 1.0 / (_args.NumSteps - 1))
231
var logMax = Math.Log(_args.
Max
, logBase);
236
val = (long)(_args.Min + normalizedValue * (_args.
Max
- _args.Min));
247
if ((_args.StepSize == null && _args.NumSteps > (_args.
Max
- _args.Min)) ||
250
for (long i = _args.Min; i <= _args.
Max
; i++)
258
var logBase = _args.StepSize ?? Math.Pow(1.0 * _args.
Max
/ _args.Min, 1.0 / (_args.NumSteps - 1));
261
var maxPlusEpsilon = _args.
Max
* Math.Sqrt(logBase);
272
var stepSize = _args.StepSize ?? (Double)(_args.
Max
- _args.Min) / (_args.NumSteps - 1);
274
var maxPlusEpsilon = _args.
Max
+ stepSize / 2;
309
Runtime.Contracts.Assert(_args.Min <= valueTyped.Value && valueTyped.Value <= _args.
Max
, "Value not in correct range");
313
float logBase = (float)(_args.StepSize ?? Math.Pow(1.0 * _args.
Max
/ _args.Min, 1.0 / (_args.NumSteps - 1)));
314
return (float)((Math.Log(valueTyped.Value, logBase) - Math.Log(_args.Min, logBase)) / (Math.Log(_args.
Max
, logBase) - Math.Log(_args.Min, logBase)));
317
return (float)(valueTyped.Value - _args.Min) / (_args.
Max
- _args.Min);
323
return (_args.Min <= valueTyped.Value && valueTyped.Value <= _args.
Max
);