Text classification
Last updated
Last updated
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 on the 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:
, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
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
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 either 0
for a negative review or 1
for a positive review.
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
Copied
PytorchHide Pytorch contentCopied
TensorFlowHide TensorFlow contentCopied
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.
Before you start training your model, create a map of the expected ids to their labels with id2label
and label2id
:
Copied
PytorchHide Pytorch content
Copied
At this point, only three steps remain:
Copied
Copied
TensorFlowHide TensorFlow content
To finetune a model in TensorFlow, start by setting up an optimizer function, learning rate schedule, and some training hyperparameters:Copied
Copied
Copied
Copied
Copied
Copied
Then bundle your callbacks together:
Copied
Copied
Once training is completed, your model is automatically uploaded to the Hub so everyone can use it!
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
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
To apply the preprocessing function over the entire dataset, use ๐Datasets function. You can speed up map
by setting batched=True
to process multiple elements of the dataset at once:
Now create a batch of examples using . 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.
Including a metric during training is often helpful for evaluating your modelโs performance. You can quickly load a evaluation method with the ๐ library. For this task, load the metric (see the ๐ Evaluate to learn more about how to load and compute a metric):
If you arenโt familiar with finetuning a model with the , take a look at the basic tutorial !
Youโre ready to start training your model now! Load DistilBERT with along with the number of expected labels, and the label mappings:
Define your training hyperparameters in . The only required parameter is output_dir
which specifies where to save your model. Youโll push this model to the Hub by setting push_to_hub=True
(you need to be signed in to BOINC AI to upload your model). At the end of each epoch, the will evaluate the accuracy and save the training checkpoint.
Pass the training arguments to along with the model, dataset, tokenizer, data collator, and compute_metrics
function.
Call to finetune your model.
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 method so everyone can use your model:
If you arenโt familiar with finetuning a model with Keras, take a look at the basic tutorial !
Then you can load DistilBERT with along with the number of expected labels, and the label mappings:
Convert your datasets to the tf.data.Dataset
format with :
Configure the model for training with . Note that Transformers models all have a default task-relevant loss function, so you donโt need to specify one unless you want to:
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 .
Pass your compute_metrics
function to :
Specify where to push your model and tokenizer in the :
Finally, youโre ready to start training your model! Call with your training and validation datasets, the number of epochs, and your callbacks to finetune the model:
For a more in-depth example of how to finetune a model for text classification, take a look at the corresponding or .
The simplest way to try out your finetuned model for inference is to use it in a . Instantiate a pipeline
for sentiment analysis with your model, and pass your text to it: