5 implementations of GetFeatureContributionMapper
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (2)
338
ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.
GetFeatureContributionMapper
<TSrc, TDst>(int top, int bottom, bool normalize)
807
ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.
GetFeatureContributionMapper
<TSrc, TDst>(int top, int bottom, bool normalize)
Microsoft.ML.FastTree (2)
FastTree.cs (1)
2931
ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.
GetFeatureContributionMapper
<TSrc, TDst>(int top, int bottom, bool normalize)
GamModelParameters.cs (1)
402
ValueMapper<TSrc, VBuffer<float>> IFeatureContributionMapper.
GetFeatureContributionMapper
<TSrc, TDstContributions>
Microsoft.ML.StandardTrainers (1)
Standard\LinearModelParameters.cs (1)
402
ValueMapper<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)
342
return _featureContribution.
GetFeatureContributionMapper
<TSrc, TDst>(top, bottom, normalize);
811
return _featureContribution.
GetFeatureContributionMapper
<TSrc, TDst>(top, bottom, normalize);
Scorers\FeatureContributionCalculation.cs (2)
229
var map = Predictor.
GetFeatureContributionMapper
<TSrc, VBuffer<float>>(_topContributionsCount, _bottomContributionsCount, _normalize);
271
var map = Predictor.
GetFeatureContributionMapper
<TSrc, VBuffer<float>>(_topContributionsCount, _bottomContributionsCount, _normalize);
Transforms\FeatureContributionCalculationTransformer.cs (1)
220
var map = _parent._predictor.
GetFeatureContributionMapper
<TSrc, VBuffer<float>>(_parent.Top, _parent.Bottom, _parent.Normalize);