You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Microsoft.ML.Data/Transforms/ExplainabilityCatalog.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -18,18 +18,18 @@ public static class ExplainabilityCatalog
18
18
/// </summary>
19
19
/// <param name="catalog">The model explainability operations catalog.</param>
20
20
/// <param name="modelParameters">Trained model parameters that support Feature Contribution Calculation and which will be used for scoring.</param>
21
-
/// <param name="featureColumn">The name of the feature column that will be used as input.</param>
21
+
/// <param name="featureColumnName">The name of the feature column that will be used as input.</param>
22
22
/// <param name="numPositiveContributions">The number of positive contributions to report, sorted from highest magnitude to lowest magnitude.
23
23
/// Note that if there are fewer features with positive contributions than <paramref name="numPositiveContributions"/>, the rest will be returned as zeros.</param>
24
24
/// <param name="numNegativeContributions">The number of negative contributions to report, sorted from highest magnitude to lowest magnitude.
25
25
/// Note that if there are fewer features with negative contributions than <paramref name="numNegativeContributions"/>, the rest will be returned as zeros.</param>
26
26
/// <param name="normalize">Whether the feature contributions should be normalized to the [-1, 1] interval.</param>
0 commit comments