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
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -15,22 +15,22 @@ public static class ExplainabilityCatalog
15
15
{
16
16
/// <summary>
17
17
/// Feature Contribution Calculation computes model-specific contribution scores for each feature.
18
-
/// Note that this functionality is not supported by all the predictors. See <see cref="FeatureContributionCalculatingTransformer"/> for a list of the suported predictors.
18
+
/// Note that this functionality is not supported by all the models. See <see cref="FeatureContributionCalculatingTransformer"/> for a list of the suported models.
19
19
/// </summary>
20
20
/// <param name="catalog">The model explainability operations catalog.</param>
21
-
/// <param name="predictor">Trained model parameters that support Feature Contribution Calculation and which will be used for scoring.</param>
21
+
/// <param name="modelParameters">Trained model parameters that support Feature Contribution Calculation and which will be used for scoring.</param>
22
22
/// <param name="featureColumn">The name of the feature column that will be used as input.</param>
23
23
/// <param name="top">The number of features with highest positive contributions for each data sample that will be retained in the FeatureContribution column.
24
24
/// Note that if there are fewer features with positive contributions than <paramref name="top"/>, the rest will be returned as zeros.</param>
25
25
/// <param name="bottom">The number of features with least negative contributions for each data sample that will be retained in the FeatureContribution column.
26
26
/// Note that if there are fewer features with negative contributions than <paramref name="bottom"/>, the rest will be returned as zeros.</param>
27
27
/// <param name="normalize">Whether the feature contributions should be normalized to the [-1, 1] interval.</param>
/// Feature Contribution Calculation computes model-specific contribution scores for each feature.
98
-
/// Note that this functionality is not supported by all the predictors. See <see cref="FeatureContributionCalculatingTransformer"/> for a list of the suported predictors.
98
+
/// Note that this functionality is not supported by all the models. See <see cref="FeatureContributionCalculatingTransformer"/> for a list of the suported models.
99
99
/// </summary>
100
100
/// <param name="env">The environment to use.</param>
101
-
/// <param name="predictor">Trained model parameters that support Feature Contribution Calculation and which will be used for scoring.</param>
101
+
/// <param name="modelParameters">Trained model parameters that support Feature Contribution Calculation and which will be used for scoring.</param>
102
102
/// <param name="featureColumn">The name of the feature column that will be used as input.</param>
103
103
/// <param name="top">The number of features with highest positive contributions for each data sample that will be retained in the FeatureContribution column.
104
104
/// Note that if there are fewer features with positive contributions than <paramref name="top"/>, the rest will be returned as zeros.</param>
105
105
/// <param name="bottom">The number of features with least negative contributions for each data sample that will be retained in the FeatureContribution column.
106
106
/// Note that if there are fewer features with negative contributions than <paramref name="bottom"/>, the rest will be returned as zeros.</param>
107
107
/// <param name="normalize">Whether the feature contributions should be normalized to the [-1, 1] interval.</param>
@@ -284,26 +267,26 @@ public static class Defaults
284
267
285
268
/// <summary>
286
269
/// Feature Contribution Calculation computes model-specific contribution scores for each feature.
287
-
/// Note that this functionality is not supported by all the predictors. See <see cref="FeatureContributionCalculatingTransformer"/> for a list of the suported predictors.
270
+
/// Note that this functionality is not supported by all the models. See <see cref="FeatureContributionCalculatingTransformer"/> for a list of the suported models.
288
271
/// </summary>
289
272
/// <param name="env">The environment to use.</param>
290
-
/// <param name="predictor">Trained model parameters that support Feature Contribution Calculation and which will be used for scoring.</param>
273
+
/// <param name="modelParameters">Trained model parameters that support Feature Contribution Calculation and which will be used for scoring.</param>
291
274
/// <param name="featureColumn">The name of the feature column that will be used as input.</param>
292
275
/// <param name="top">The number of features with highest positive contributions for each data sample that will be retained in the FeatureContribution column.
293
276
/// Note that if there are fewer features with positive contributions than <paramref name="top"/>, the rest will be returned as zeros.</param>
294
277
/// <param name="bottom">The number of features with least negative contributions for each data sample that will be retained in the FeatureContribution column.
295
278
/// Note that if there are fewer features with negative contributions than <paramref name="bottom"/>, the rest will be returned as zeros.</param>
296
279
/// <param name="normalize">Whether the feature contributions should be normalized to the [-1, 1] interval.</param>
0 commit comments