8 references to FindIndexSorted
Microsoft.ML.Data (3)
Prediction\Calibrator.cs (1)
2114
int pos = Maxes.
FindIndexSorted
(score);
Transforms\NormalizeColumnSng.cs (2)
1330
_offset = _binUpperBounds.
FindIndexSorted
(0) / _den;
1410
_offset[i] = _binUpperBounds[i].
FindIndexSorted
(0) / _den[i];
Microsoft.ML.FastTree (1)
RandomForestRegression.cs (1)
123
return _weightedSums.
FindIndexSorted
(h);
Microsoft.ML.Transforms (4)
MutualInformationFeatureSelection.cs (4)
801
min = -1 - bounds.
FindIndexSorted
(0);
806
dst = offset + 1 + bounds.
FindIndexSorted
((Single)src);
827
min = -1 - bounds.
FindIndexSorted
(0);
832
dst = Single.IsNaN(src) ? offset : offset + 1 + bounds.
FindIndexSorted
(src);