2 implementations of GetFeatureContributionMapper
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (2)
338ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.GetFeatureContributionMapper<TSrc, TDst>(int top, int bottom, bool normalize) 807ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.GetFeatureContributionMapper<TSrc, TDst>(int top, int bottom, bool normalize)
5 references to GetFeatureContributionMapper
Microsoft.ML.Data (5)
Prediction\Calibrator.cs (2)
342return _featureContribution.GetFeatureContributionMapper<TSrc, TDst>(top, bottom, normalize); 811return _featureContribution.GetFeatureContributionMapper<TSrc, TDst>(top, bottom, normalize);
Scorers\FeatureContributionCalculation.cs (2)
229var map = Predictor.GetFeatureContributionMapper<TSrc, VBuffer<float>>(_topContributionsCount, _bottomContributionsCount, _normalize); 271var map = Predictor.GetFeatureContributionMapper<TSrc, VBuffer<float>>(_topContributionsCount, _bottomContributionsCount, _normalize);
Transforms\FeatureContributionCalculationTransformer.cs (1)
220var map = _parent._predictor.GetFeatureContributionMapper<TSrc, VBuffer<float>>(_parent.Top, _parent.Bottom, _parent.Normalize);