2 writes to Mins
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (2)
1987
Mins
= mins;
2030
Mins
= mins.ToImmutableArray();
14 references to Mins
Microsoft.ML.Data (14)
Prediction\Calibrator.cs (14)
1926
/// <item><description><see cref="Values"/>[i], if <see cref="
Mins
"/>[i] <= x <= <see cref="Maxes"/>[i]</description>></item>
1927
/// <item> <description>Linear interpolation between <see cref="Values"/>[i] and <see cref="Values"/>[i+1], if <see cref="Maxes"/>[i] < x < <see cref="
Mins
"/>[i+1]</description></item>
1928
/// <item><description><see cref="Values"/>[0], if x < <see cref="
Mins
"/>[0]</description></item>
2064
_host.Assert(
Mins
.Length == Maxes.Length);
2065
_host.Assert(
Mins
.Length == Values.Length);
2066
ctx.Writer.Write(
Mins
.Length);
2069
for (int i = 0; i <
Mins
.Length; i++)
2071
_host.Assert(
Mins
[i] <= Maxes[i]);
2072
_host.Assert(
Mins
[i] > maxPrev);
2076
ctx.Writer.Write(
Mins
[i]);
2098
int p =
Mins
.Length;
2101
if (score <
Mins
[0])
2117
if (score >=
Mins
[pos])
2120
float t = (score - Maxes[pos - 1]) / (
Mins
[pos] - Maxes[pos - 1]);