Global Explainability

Fiddler provides powerful visualizations to describe the impact of features in your model. Feature impact and importance can be found in either the Explain or Analyze tab.

Global explanations are available in the UI for structured (tabular) and natural language (NLP) models, for both classification and regression. They are also supported via API using the Fiddler Python package. Global explanations are available for both production and baseline queries.

Tabular Models

For tabular models, Fiddler’s Global Explanation tool shows the impact/importance of the features in the model.

Two global explanation methods are available:

  • Feature impact — Gives the average absolute change in the model prediction when a feature is randomly ablated (removed).
  • Feature importance — Gives the average change in loss when a feature is randomly ablated.

Feature impact and importance are displayed as percentages of all attributions.

The following is an example of feature impact for a model predicting the likelihood of successful loan repayment:

Language (NLP) Models

For language models, Fiddler’s Global Explanation performs ablation feature impact on a collection of text samples, determining which words have the most impact on the prediction.

📘

Info

For speed performance, Fiddler uses a random corpus of 200 documents from the dataset. When using the get_feature_impact function from the Fiddler API client, the number of input sentences can be changed to use a bigger corpus of texts.

Two types of visualization are available:

  • Word cloud — Displays a word cloud of top 150 words from a collection of text for this model. Fiddler provides three options:

    • Average change: The average impact of a word in the corpus of documents. This takes into account the impact's directionality.
    • Average absolute feature impact: The average absolute impact of a word in the corpus of documents. This only takes the absolute impact of the word into account, and not its directionality.
    • Occurrences: The number of times a word is present in the corpus of text.
  • Bar chart — Displays the impact for the Top N words. By default, only words with at least 15 occurrences are displayed. This number can be modified in the UI and will be reflected in real time in the bar chart. Fiddler provides two options:

    • Average change: The average impact of a word in the corpus of documents. This takes into account the impact's directionality. Since positive and negative directionalities can cancel out, Fiddler provides a histogram of the individual impact, which can be found by clicking on the word.
    • Average absolute feature impact: The average absolute impact of a word in the corpus of documents. This only takes the absolute impact of the word into account, and not its directionality.

The following image shows an example of word impact for a sentiment analysis model:

↪ Questions? Join our community Slack to talk to a product expert