Implemented interface member:
property
Value
Microsoft.ML.IParameterValue<TValue>.Value
6 references to Value
Microsoft.ML.Sweeper (6)
Parameters.cs (6)
317
Contracts.Check(_options.Min <= valueTyped.
Value
&& valueTyped.
Value
<= _options.Max, "Value not in correct range");
322
return (float)((Math.Log(valueTyped.
Value
, logBase) - Math.Log(_options.Min, logBase)) / (Math.Log(_options.Max, logBase) - Math.Log(_options.Min, logBase)));
325
return (float)(valueTyped.
Value
- _options.Min) / (_options.Max - _options.Min);
332
return (_options.Min <= valueTyped.
Value
&& valueTyped.
Value
<= _options.Max);