Intro to NLP Monitoring
Whether it's text classification, information extraction, or question answering, use Aporia to monitor your Natural Language Processing models in production.
This guide will walk you through the core concepts of NLP model monitoring. Before soon, you'll be able to detect drift and measure model performance for your NLP models 🚀
Throughout the guide, we will use a simple sentiment analysis model based on 🤗 HuggingFace:
This downloads a default pretrained model and tokenizer for Sentiment Analysis. Now you can use the classifier
on your target text:
Extract Embeddings
To effectively detect drift in NLP models, we use embeddings.
But... what are embeddings?
Textual data is complex, high-dimensional, and free-form. Embeddings represent text as low-dimensional vectors.
Various language models, such as Word2Vec and transformer-based models like BERT, are used obtain embeddings for NLP models. In case of BERT, embeddings are usually vectors of size 768.
To get embeddings for our HuggingFace model, we'll need to do two things:
Pass
output_hidden_states=True
to our model params.When we call
pipeline(...)
it does a lot of things for us - preprocessing, inference, and postprocessing. We'll need to break all this, so we can interfere in the middle and get embeddings 😉
In other words:
And finally, to extract embeddings for this prediction:
Storing your Predictions
The next step would be to store your predictions in a data store, including the embeddings themselves. For more information on storing your predictions, please check out the Storing Your Predictions section.
For example, you could use a Parquet file on S3 or a Postgres table that looks like this:
Integrate to Aporia
Now let’s add some monitoring to this model 🚀 To monitor this model in Aporia, the first step is to create a model version:
Next, we can log predictions directly to Aporia:
Alternatively, connect Aporia to a data source. For more information, see Data Sources - Overview:
Your model should now be integrated to Aporia! 🎉
Next steps
Create a custom dashboard for your model in Aporia - Drag & drop widgets to show different performance metrics, top drifted features, etc.
Visualize NLP drift using Aporia's Embeddings Projector - Use the UMap tool to visually see drift between different datasets in production.
Set up alerts to get notified for ML issues - Including data integrity issues, model performance degradation, and model drift.
Last updated