Anomaly Detection - Can it help in Contact Centre Management?

Post author: 
Shane
11/08/2020
Est. Reading: 5 minutes
Edgetier Blog Images
anomaly detection view e1597165327118 - EdgeTier AI

Track every metric

Keeping on top of the metrics and activities required to ensure your contact centre is running smoothly can be difficult and overwhelming. Every unnoticed issue directly impacts customer experience, leading to frustration, missed SLAs, and reduced customer satisfaction.

At EdgeTier, we believe that machine learning, and in particular “anomaly detection” techniques, can play a valuable role in monitoring contact centre metrics and alerting management when unusual activity is detected. This is key as part of any agent assist process.

In this blog post we discuss anomaly detection, what it is, and how it can be used to improve customer experience within a contact centre.

What is anomaly detection?

Anomaly detection is a branch of statistics and computer science which focuses on the detection of rare, unusual, or new events which may occur within a system. 

The presence of an anomaly can often point to a fault or potential future problem within the system. Some common examples of this include:

  • An unusually high amount of postings to a particular bank account which could indicate fraud.
  • An unusual correlation between the input and output from a machine which could indicate a fault within the machine.
  • A sudden increase in your contact centre’s queue length which could indicate that your agents are about to be overwhelmed. 

The main technical challenge posed by anomaly detection is that in most real world applications, there is no labelled data which identifies all the different anomalies which can occur within a particular system. 

Without labels, we must rely on unsupervised learning techniques whose performance and accuracy are more difficult to assess, and we must be careful when training unsupervised models to ensure that we exclude as much anomalous data from our training set as possible. Excluding anomalous data prevents the model from learning that any previous anomalies that occurred are “normal” events.

Popular approaches

While there are many anomaly detection algorithms, in this section I will discuss a few common approaches.

One-class support vector machines (SVMs)

The one-class SVM is an unsupervised model, trained exclusively on “normal” data. The model will create a boundary line (or plane) around the training data and flag any new data points which lie outside of the boundary as anomalies. The SVM approach is easy to understand, and works well on high dimensional data (data with a lot of variables); however, it can struggle with understanding trends over time.

svm - EdgeTier AI
Figure 1: A visual example of a simple one-class SVM

Regression & curve fitting

Regression is a statistical technique which attempts to understand and model the relationship between a set of predictors and some dependent variable (e.g. height and weight). We can leverage this in anomaly detection for time series data by attempting to predict the value of a particular variable (e.g. number of incoming chats) at any given time by using its values over the preceding 24 hours as a set of predictors. From here we can compare the actual value to the predicted and flag an anomaly if the difference is statistically significant.

While a regression approach works well with time series data, most simple regression algorithms will struggle with predicting anomalies among multiple related variables (e.g. number of incoming chats and number of incoming calls).

regression 1024x579 1 - EdgeTier AI
Figure 2: An example of how regression can be used for anomaly detection in a single variable over time

Autoencoders

Autoencoders are a form of deep neural networks which can be used to detect anomalies across variables in a dataset. Although they were first described in 1987, recently advances in computing power and deep learning techniques have meant that autoencoders have become increasingly popular over the last decade.

When trained on normal data, an autoencoder will read in a set of values (e.g. incoming chats, calls, emails, etc.), compress them into an encoded format before decoding them back to their original input. The idea is that, since the model is only trained on normal data, it will struggle with decompressing anomalous data. We can compare the input values to the output, and flag an anomaly in any variable where the difference is statistically significant.

The autoencoder approach can work well when you want to detect anomalies within a number of related variables. However, like many deep-learning models  typically a lot of training data is required to properly train an autoencoder, and, as with the SVM, it can struggle with time series data.

autoencoder - EdgeTier AI
Figure 3: A simple autoencoder architecture

Implementation example in python

In this section, I will work through a simple example of how we might implement a one-class SVM in python to detect anomalies in two contact centre metrics (active agents and abandoned chats).

As with any data science task, we will begin by looking at our data. In the code snippet below you will see that I begin by creating a small training dataset before converting it into a pandas dataframe and looking at the first few rows of the data

code image 1 1024x479 1 - EdgeTier AI
training data 1024x576 1 - EdgeTier AI
Figure 4: Distribution of training data for one-class SVM

If we are happy that there are no anomalies in our training dataset, we can proceed to fit a model using this data.

To do this we will use scikit-learns OneClassSVM function. As demonstrated below, we create an SVM model object before passing in our training data using the .fit() method. This will generate an anomaly boundary around our training data.

code 2 1024x166 1 - EdgeTier AI

Once the model is trained, we are ready to start detecting anomalies. We do this by gathering a set of unseen data points and generating predictions from the model using the .predict() method. This will output an array of values in which anomalies are signified by a -1 and normal values by 1.

code 3 1024x355 1 - EdgeTier AI

When we take a look at the output, we can see that the model identified three anomalies in the unseen data. Taking a look at these anomalies by plotting them alongside the training data, we can quickly see that two types of anomalies emerge:

  1. Instances where there is an unusually high amount of abandoned chats.
  2. One instance where there is a large amount of active agents.
testing output 1024x576 1 - EdgeTier AI
Figure 5: Output from model on testing data plotted alongside the training set

Of course, this is a very simple example but I hope it gives you a better understanding of how you might go about implementing an anomaly detection system to assist agents and customer service teams, and the kind of outputs to expect.

The EdgeTier Approach to anomaly detection

At EdgeTier, our approach in the WatchTower product uses a multivariate deep-learning regression network to analyse trends and correlations among every contact centre metric over historical time periods and uses this information to predict the expected activity within the contact centre at any given moment.

From here, we perform a statistical comparison between the predicted and actual activity to determine if the contact centre is in an anomalous state, and if so, which metrics are driving the anomaly (e.g. a spike in incoming chats).

watchtower 1024x438 1 - EdgeTier AI
Figure 6: An example of the trends and correlations monitored by WatchTower

The advantage of the WatchTower approach is that it is capable of understanding both how each contact centre metric evolves over time, and how they relate to each other. For example, WatchTower will understand that a decrease in the number of incoming chats will typically result in a corresponding decrease in the number of chats resolved and number of chats abandoned over time.

Closing Thoughts

Anomaly detection is an exciting branch of computer science with many real-world applications. We have seen above that we can very quickly spin up a simple anomaly detection system for two contact centre metrics. However, recent advances in deep learning have led to the development of more sophisticated anomaly detection models capable of identifying anomalies within large groups of related variables over time.

If you are interested in adding a layer of anomaly detection to your contact centre to bolster your agent assist process or would like to learn more about our approach to contact centre anomaly detection and how it can help you, get in touch, and be sure to read about our WatchTower product for anomaly detection in contact centre data.

Discover More
Let us know your details and we will contact you with more information regarding EdgeTier and our Platform.
Main-Contact-From (#5)
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram