Text classification
Text classification is a common NLP task that assigns a label or class to text. Some of the largest companies run text classification in production for a wide range of practical applications. One of the most popular forms of text classification is sentiment analysis, which assigns a label like 🌎positive, 🌎 negative, or 🌎 neutral to a sequence of text.
This guide will show you how to:
Finetune DistilBERT on the IMDb dataset to determine whether a movie review is positive or negative.
Use your finetuned model for inference.
The task illustrated in this tutorial is supported by the following model architectures:
ALBERT, BART, BERT, BigBird, BigBird-Pegasus, BioGpt, BLOOM, CamemBERT, CANINE, CodeLlama, ConvBERT, CTRL, Data2VecText, DeBERTa, DeBERTa-v2, DistilBERT, ELECTRA, ERNIE, ErnieM, ESM, Falcon, FlauBERT, FNet, Funnel Transformer, GPT-Sw3, OpenAI GPT-2, GPTBigCode, GPT Neo, GPT NeoX, GPT-J, I-BERT, LayoutLM, LayoutLMv2, LayoutLMv3, LED, LiLT, LLaMA, Longformer, LUKE, MarkupLM, mBART, MEGA, Megatron-BERT, Mistral, MobileBERT, MPNet, MPT, MRA, MT5, MVP, Nezha, Nyströmformer, OpenLlama, OpenAI GPT, OPT, Perceiver, Persimmon, PLBart, QDQBert, Reformer, RemBERT, RoBERTa, RoBERTa-PreLayerNorm, RoCBert, RoFormer, SqueezeBERT, T5, TAPAS, Transformer-XL, UMT5, XLM, XLM-RoBERTa, XLM-RoBERTa-XL, XLNet, X-MOD, YOSO
Before you begin, make sure you have all the necessary libraries installed:
Copied
We encourage you to login to your BOINC AI account so you can upload and share your model with the community. When prompted, enter your token to login:
Copied
Load IMDb dataset
Start by loading the IMDb dataset from the 🌎Datasets library:
Copied
Then take a look at an example:
Copied
There are two fields in this dataset:
text
: the movie review text.label
: a value that is either0
for a negative review or1
for a positive review.
Preprocess
The next step is to load a DistilBERT tokenizer to preprocess the text
field:
Copied
Create a preprocessing function to tokenize text
and truncate sequences to be no longer than DistilBERT’s maximum input length:
Copied
To apply the preprocessing function over the entire dataset, use 🌎Datasets map function. You can speed up map
by setting batched=True
to process multiple elements of the dataset at once:
Copied
Now create a batch of examples using DataCollatorWithPadding. It’s more efficient to dynamically pad the sentences to the longest length in a batch during collation, instead of padding the whole dataset to the maximum length.
PytorchHide Pytorch contentCopied
TensorFlowHide TensorFlow contentCopied
Evaluate
Including a metric during training is often helpful for evaluating your model’s performance. You can quickly load a evaluation method with the 🌎 Evaluate library. For this task, load the accuracy metric (see the 🌎 Evaluate quick tour to learn more about how to load and compute a metric):
Copied
Then create a function that passes your predictions and labels to compute
to calculate the accuracy:
Copied
Your compute_metrics
function is ready to go now, and you’ll return to it when you setup your training.
Train
Before you start training your model, create a map of the expected ids to their labels with id2label
and label2id
:
Copied
PytorchHide Pytorch content
If you aren’t familiar with finetuning a model with the Trainer, take a look at the basic tutorial here!
You’re ready to start training your model now! Load DistilBERT with AutoModelForSequenceClassification along with the number of expected labels, and the label mappings:
Copied
At this point, only three steps remain:
Define your training hyperparameters in TrainingArguments. The only required parameter is
output_dir
which specifies where to save your model. You’ll push this model to the Hub by settingpush_to_hub=True
(you need to be signed in to BOINC AI to upload your model). At the end of each epoch, the Trainer will evaluate the accuracy and save the training checkpoint.Pass the training arguments to Trainer along with the model, dataset, tokenizer, data collator, and
compute_metrics
function.Call train() to finetune your model.
Copied
Trainer applies dynamic padding by default when you pass tokenizer
to it. In this case, you don’t need to specify a data collator explicitly.
Once training is completed, share your model to the Hub with the push_to_hub() method so everyone can use your model:
Copied
TensorFlowHide TensorFlow content
If you aren’t familiar with finetuning a model with Keras, take a look at the basic tutorial here!
To finetune a model in TensorFlow, start by setting up an optimizer function, learning rate schedule, and some training hyperparameters:Copied
Then you can load DistilBERT with TFAutoModelForSequenceClassification along with the number of expected labels, and the label mappings:
Copied
Convert your datasets to the tf.data.Dataset
format with prepare_tf_dataset():
Copied
Configure the model for training with compile
. Note that Transformers models all have a default task-relevant loss function, so you don’t need to specify one unless you want to:
Copied
The last two things to setup before you start training is to compute the accuracy from the predictions, and provide a way to push your model to the Hub. Both are done by using Keras callbacks.
Pass your compute_metrics
function to KerasMetricCallback:
Copied
Specify where to push your model and tokenizer in the PushToHubCallback:
Copied
Then bundle your callbacks together:
Copied
Finally, you’re ready to start training your model! Call fit
with your training and validation datasets, the number of epochs, and your callbacks to finetune the model:
Copied
Once training is completed, your model is automatically uploaded to the Hub so everyone can use it!
For a more in-depth example of how to finetune a model for text classification, take a look at the corresponding PyTorch notebook or TensorFlow notebook.
Inference
Great, now that you’ve finetuned a model, you can use it for inference!
Grab some text you’d like to run inference on:
Copied
The simplest way to try out your finetuned model for inference is to use it in a pipeline(). Instantiate a pipeline
for sentiment analysis with your model, and pass your text to it:
Copied
You can also manually replicate the results of the pipeline
if you’d like:
PytorchHide Pytorch content
Tokenize the text and return PyTorch tensors:
Copied
Pass your inputs to the model and return the logits
:
Copied
Get the class with the highest probability, and use the model’s id2label
mapping to convert it to a text label:
Copied
TensorFlowHide TensorFlow content
Tokenize the text and return TensorFlow tensors:
Copied
Pass your inputs to the model and return the logits
:
Copied
Get the class with the highest probability, and use the model’s id2label
mapping to convert it to a text label:
Copied
Last updated