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
The MlContext.Model.Explainability catalog was created with the idea that all the model explainability operations would live there.
But it only contains FeatureContributionCalculation because PermutationFeatureImportance lives in the training task specific catalog (i.e. MlContext.BinaryClassification...) because it is task specific.
@rogancarr and @TomFinley agreed that it is not desirable to have a subcatalog with only one transform. And since FeatureContributionCalculation is an estimator/transformer it should probably live under:
artidoro
changed the title
FeatureContributionCalculation and Explainability Catalog
Scrubbing of FeatureContributionCalculation and Explainability Catalog
Mar 14, 2019
Explainability catalog should be cleaned up.
The
MlContext.Model.Explainability
catalog was created with the idea that all the model explainability operations would live there.But it only contains
FeatureContributionCalculation
becausePermutationFeatureImportance
lives in the training task specific catalog (i.e.MlContext.BinaryClassification
...) because it is task specific.@rogancarr and @TomFinley agreed that it is not desirable to have a subcatalog with only one transform. And since
FeatureContributionCalculation
is an estimator/transformer it should probably live under:MlContext.Transforms.FeatureContributionCalculation
The text was updated successfully, but these errors were encountered: