8 references to FindIndexSorted
Microsoft.ML.Data (3)
Prediction\Calibrator.cs (1)
2114int 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)
123return _weightedSums.FindIndexSorted(h);
Microsoft.ML.Transforms (4)
MutualInformationFeatureSelection.cs (4)
801min = -1 - bounds.FindIndexSorted(0); 806dst = offset + 1 + bounds.FindIndexSorted((Single)src); 827min = -1 - bounds.FindIndexSorted(0); 832dst = Single.IsNaN(src) ? offset : offset + 1 + bounds.FindIndexSorted(src);