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
New featurePermutationImportance explainer implementing the permutation feature importance global explanations. Also included is a plot_permutation_importance utility function for flexible plotting of the resulting feature importance scores (docs, #798).
New featurePartialDependenceVariance explainer implementing partial dependence variance global explanations. Also included is a plot_pd_variance utility function for flexible plotting of the resulting PD variance plots (docs, #758).
Fixed
GradientSimilarity explainer now automatically handles sparse tensors in the model by converting the gradient tensors to dense ones before calculating similarity. This used to be a source of bugs when calculating similarity for models with embedding layers for which gradients tensors are sparse by default. Additionally, it now filters any non-trainable parameters and doesn't consider those in the calculation as no gradients exist. A warning is raised if any non-trainable layers or parameters are detected (#829).
Updated the discussion of the interpretation of ALE. The previous examples and documentation had some misleading claims; these have been removed and reworked with an emphasis on the mostly qualitative interpretation of ALE plots (#838, #846).
Changed
Deprecated the use of the legacy Boston housing dataset in examples and testing. The new examples now use the California housing dataset (#838, #834).
Modularized the computation of prototype importances and plotting for ProtoSelect, allowing greater flexibility to the end user (#826).
Roadmap documentation page removed due to going out of date (#842).
Development
Tests added for tensorflow models used in CounterfactualRL (#793).
Tests added for pytorch models used in CounterfactualRL (#799).
Tests added for ALE plotting functionality (#816).
Tests added for PartialDependence plotting functionality (#819).
Tests added for PartialDependenceVariance plotting functionality (#820).
Tests added for PermutationImportance plotting functionality (#824).
Tests addef for ProtoSelect plotting functionality (#841).