2 writes to Maxes
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (2)
1988
Maxes
= maxes;
2031
Maxes
= maxes.ToImmutableArray();
11 references to Maxes
Microsoft.ML.Data (11)
Prediction\Calibrator.cs (11)
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>
1929
/// <item><description><see cref="Values"/>[n], if x > <see cref="
Maxes
"/>[n]</description></item>
2064
_host.Assert(Mins.Length ==
Maxes
.Length);
2071
_host.Assert(Mins[i] <=
Maxes
[i]);
2075
maxPrev =
Maxes
[i];
2077
ctx.Writer.Write(
Maxes
[i]);
2107
if (score >
Maxes
[p - 1])
2114
int pos =
Maxes
.FindIndexSorted(score);
2120
float t = (score -
Maxes
[pos - 1]) / (Mins[pos] -
Maxes
[pos - 1]);