6 references to CalculateFeatureContribution
Microsoft.ML.Data (1)
Transforms\FeatureContributionCalculationTransformer.cs (1)
296/// <seealso cref="ExplainabilityCatalog.CalculateFeatureContribution{TModelParameters, TCalibrator}(TransformsCatalog, ISingleFeaturePredictionTransformer{Calibrators.CalibratedModelParametersBase{TModelParameters, TCalibrator}}, int, int, bool)"/>
Microsoft.ML.Samples (1)
Dynamic\Transforms\CalculateFeatureContributionCalibrated.cs (1)
55.CalculateFeatureContribution(linearModel, normalize: false)
Microsoft.ML.Tests (4)
FeatureContributionTests.cs (4)
225var est = ML.Transforms.CalculateFeatureContribution(model, numberOfPositiveContributions: 3, numberOfNegativeContributions: 0) 226.Append(ML.Transforms.CalculateFeatureContribution(model, numberOfPositiveContributions: 0, numberOfNegativeContributions: 3)) 227.Append(ML.Transforms.CalculateFeatureContribution(model, numberOfPositiveContributions: 1, numberOfNegativeContributions: 1)) 228.Append(ML.Transforms.CalculateFeatureContribution(model, numberOfPositiveContributions: 1, numberOfNegativeContributions: 1, normalize: false));