Image classification

Image classification assigns a label or class to an image. Unlike text or audio classification, the inputs are the pixel values that comprise an image. There are many applications for image classification, such as detecting damage after a natural disaster, monitoring crop health, or helping screen medical images for signs of disease.

This guide illustrates how to:

  1. Fine-tune ViTarrow-up-right on the Food-101arrow-up-right dataset to classify a food item in an image.

  2. Use your fine-tuned model for inference.

The task illustrated in this tutorial is supported by the following model architectures:

BEiTarrow-up-right, BiTarrow-up-right, ConvNeXTarrow-up-right, ConvNeXTV2arrow-up-right, CvTarrow-up-right, Data2VecVisionarrow-up-right, DeiTarrow-up-right, DiNATarrow-up-right, DINOv2arrow-up-right, EfficientFormerarrow-up-right, EfficientNetarrow-up-right, FocalNetarrow-up-right, ImageGPTarrow-up-right, LeViTarrow-up-right, MobileNetV1arrow-up-right, MobileNetV2arrow-up-right, MobileViTarrow-up-right, MobileViTV2arrow-up-right, NATarrow-up-right, Perceiverarrow-up-right, PoolFormerarrow-up-right, PVTarrow-up-right, RegNetarrow-up-right, ResNetarrow-up-right, SegFormerarrow-up-right, SwiftFormerarrow-up-right, Swin Transformerarrow-up-right, Swin Transformer V2arrow-up-right, VANarrow-up-right, ViTarrow-up-right, ViT Hybridarrow-up-right, ViTMSNarrow-up-right

Before you begin, make sure you have all the necessary libraries installed:

Copied

pip install transformers datasets evaluate

We encourage you to log in to your BOINC AI account to upload and share your model with the community. When prompted, enter your token to log in:

Copied

>>> from boincai_hub import notebook_login

>>> notebook_login()

Load Food-101 dataset

Start by loading a smaller subset of the Food-101 dataset from the 🌍 Datasets library. This will give you a chance to experiment and make sure everything works before spending more time training on the full dataset.

Copied

Split the dataset’s train split into a train and test set with the train_test_splitarrow-up-right method:

Copied

Then take a look at an example:

Copied

Each example in the dataset has two fields:

  • image: a PIL image of the food item

  • label: the label class of the food item

To make it easier for the model to get the label name from the label id, create a dictionary that maps the label name to an integer and vice versa:

Copied

Now you can convert the label id to a label name:

Copied

Preprocess

The next step is to load a ViT image processor to process the image into a tensor:

Copied

PytorchHide Pytorch content

Apply some image transformations to the images to make the model more robust against overfitting. Here you’ll use torchvision’s transformsarrow-up-right module, but you can also use any image library you like.

Crop a random part of the image, resize it, and normalize it with the image mean and standard deviation:

Copied

Then create a preprocessing function to apply the transforms and return the pixel_values - the inputs to the model - of the image:

Copied

To apply the preprocessing function over the entire dataset, use 🌍 Datasets with_transformarrow-up-right method. The transforms are applied on the fly when you load an element of the dataset:

Copied

Now create a batch of examples using DefaultDataCollatorarrow-up-right. Unlike other data collators in 🌍Transformers, the DefaultDataCollator does not apply additional preprocessing such as padding.

Copied

TensorFlowHide TensorFlow content

To avoid overfitting and to make the model more robust, add some data augmentation to the training part of the dataset. Here we use Keras preprocessing layers to define the transformations for the training data (includes data augmentation), and transformations for the validation data (only center cropping, resizing and normalizing). You can use tf.imageor any other library you prefer.

Copied

Next, create functions to apply appropriate transformations to a batch of images, instead of one image at a time.

Copied

Use 🌍 Datasets set_transformarrow-up-right to apply the transformations on the fly:

Copied

As a final preprocessing step, create a batch of examples using DefaultDataCollator. Unlike other data collators in 🌍 Transformers, the DefaultDataCollator does not apply additional preprocessing, such as padding.

Copied

Evaluate

Including a metric during training is often helpful for evaluating your model’s performance. You can quickly load an evaluation method with the 🌍 Evaluatearrow-up-right library. For this task, load the accuracyarrow-up-right metric (see the 🌍 Evaluate quick tourarrow-up-right 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 set up your training.

Train

PytorchHide Pytorch content

If you aren’t familiar with finetuning a model with the Trainerarrow-up-right, take a look at the basic tutorial herearrow-up-right!

You’re ready to start training your model now! Load ViT with AutoModelForImageClassificationarrow-up-right. Specify the number of labels along with the number of expected labels, and the label mappings:

Copied

At this point, only three steps remain:

  1. Define your training hyperparameters in TrainingArgumentsarrow-up-right. It is important you don’t remove unused columns because that’ll drop the image column. Without the image column, you can’t create pixel_values. Set remove_unused_columns=False to prevent this behavior! The only other 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 Trainerarrow-up-right will evaluate the accuracy and save the training checkpoint.

  2. Pass the training arguments to Trainerarrow-up-right along with the model, dataset, tokenizer, data collator, and compute_metrics function.

  3. Call train()arrow-up-right to finetune your model.

Copied

Once training is completed, share your model to the Hub with the push_to_hub()arrow-up-right method so everyone can use your model:

Copied

TensorFlowHide TensorFlow content

If you are unfamiliar with fine-tuning a model with Keras, check out the basic tutorialarrow-up-right first!

To fine-tune a model in TensorFlow, follow these steps:

  1. Define the training hyperparameters, and set up an optimizer and a learning rate schedule.

  2. Instantiate a pre-trained model.

  3. Convert a 🌍 Dataset to a tf.data.Dataset.

  4. Compile your model.

  5. Add callbacks and use the fit() method to run the training.

  6. Upload your model to 🌍 Hub to share with the community.

Start by defining the hyperparameters, optimizer and learning rate schedule:

Copied

Then, load ViT with TFAutoModelForImageClassificationarrow-up-right along with the label mappings:

Copied

Convert your datasets to the tf.data.Dataset format using the to_tf_datasetarrow-up-right and your data_collator:

Copied

Configure the model for training with compile():

Copied

To compute the accuracy from the predictions and push your model to the 🌍 Hub, use Keras callbacksarrow-up-right. Pass your compute_metrics function to KerasMetricCallbackarrow-up-right, and use the PushToHubCallbackarrow-up-right to upload the model:

Copied

Finally, you are ready to train your model! Call fit() with your training and validation datasets, the number of epochs, and your callbacks to fine-tune the model:

Copied

Congratulations! You have fine-tuned your model and shared it on the 🌍 Hub. You can now use it for inference!

For a more in-depth example of how to finetune a model for image classification, take a look at the corresponding PyTorch notebookarrow-up-right.

Inference

Great, now that you’ve fine-tuned a model, you can use it for inference!

Load an image you’d like to run inference on:

Copied

image of beignets

The simplest way to try out your finetuned model for inference is to use it in a pipeline()arrow-up-right. Instantiate a pipeline for image classification with your model, and pass your image to it:

Copied

You can also manually replicate the results of the pipeline if you’d like:

PytorchHide Pytorch content

Load an image processor to preprocess the image and return the input as PyTorch tensors:

Copied

Pass your inputs to the model and return the logits:

Copied

Get the predicted label with the highest probability, and use the model’s id2label mapping to convert it to a label:

Copied

TensorFlowHide TensorFlow content

Load an image processor to preprocess the image and return the input as TensorFlow tensors:

Copied

Pass your inputs to the model and return the logits:

Copied

Get the predicted label with the highest probability, and use the model’s id2label mapping to convert it to a label:

Copied

Last updated