5 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)
Microsoft.ML.FastTree (2)
FastTree.cs (1)
2931ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.GetFeatureContributionMapper<TSrc, TDst>(int top, int bottom, bool normalize)
GamModelParameters.cs (1)
402ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.GetFeatureContributionMapper<TSrc, TDstContributions>
Microsoft.ML.StandardTrainers (1)
Standard\LinearModelParameters.cs (1)
402ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.GetFeatureContributionMapper<TSrc, TDstContributions>(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);