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