Skip to content

A innovative way to visualize text misclassifications within a confusion matrix in Tableau.

Notifications You must be signed in to change notification settings

longenbach/Tableau-Interactive-Confusion-Matrix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Interactive Confusion Matrix

An innovative way to visualize text misclassifications within a confusion matrix in Tableau.

What:

A confusion matrix or error matrix is a tabular visualization used to assess the performance of a classification model. In the binary case, it allows us to examine the number of false positives and negatives. In the multi-class case, it allows us to examine more generally which classes the model is mixing up. [Image Source]

Why:

In classification problems where features are numeric (ex. age, weight, or shoe size) distribution plots can be used to further visualize the feature differences between false positives and true positives. However, in cases where features are a single string of text (ex. blog post, a question, a review), visualizing the cause of misclassification can prove to be challenging.

For text classification, you have to decide on how to encode the text-based information. Bag of words, Tf-Idf, Word2Vec, or more advanced embeddings (ELMo & BERT) are commonly used to represent text as numerical features. Once feature engineering is complete, secondly you have to decide on what classification model to test. [Image Source]

Test accuracy and statistics can be used when evaluating a given combination of 1) encoding text numerically and 2) the architecture of the classification model. However, sometimes simply chasing accuracy isn’t the best choice or even the initial goal. Instead, modeling testing can be used to evaluate the strength of the data. Machine learning is not magic as it is only as good as the data we put in.

When recently working on a semi-supervised text classification project for United Technologies (UTC), my team used confusion matrices to evaluate models like discussed above. To better understand our data and text misclassifications sometimes the best thing you can do is look at your data. In general, it can also be helpful to look at which tokens are associated with predicting a certain class. Inspecting your data gets at the question: could a human manually label this text correctly? While a confusion matrix allows for counting the number of misclassifications, it doesn’t allow for viewing the misclassifications itself.

The new interactive Tableau confusion matrix looks to tackle this issue.

How:

0) Example Data

I used a straightforward dataset to show the structure of this new confusion matrix. The dataset used is text posts from Google each with an associated code tag (Python, C, Java, HTML). The text classification model was copied from Github user sararob to generate predicted labels for each of these text posts. To create the new interactive confusion matrix we just need a few more data fields:

1) Assign each label/tag to an integer value. Using a LabelEncoder in Sklearn is an easy way to accomplish this.

2) Give each text post a random (x,y) coordinate based on its true and predicted label.

3) Write to a data frame to CSV file or write to google sheets for a more seamless connection to Tableau.

View the Colaboratory notebook for more details on creating a CSV file for Tableau notebook.

Interactive Confusion Matrix:

Being able to examine the text which is being misclassified can start to give you a better idea of why the current model might be failing. For example, is the issue semantics or spelling errors or maybe it’s a very challenging problem given the available data. NLP problems are difficult but sometimes the best thing you can do to start is to visualize your data.

Below is a general visual framework:

  • Another option is to display only important words, not the entire text post.
  • Filter or size points based on the probability a post belongs to a certain class.
  • Open to feedback and suggestions.

Files:

Link to [Colaboratory notebook]

Link to [csv file]

Link to [Tableau notebook]