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