Multi Class Classification

Multi-class classification is one the most popular supervised classification problem one might come across when dealing with NLP problems. AutoNLP makes it super easy to train multi-class classification models on your data. Let’s assume we are training a model for sentiment detection. The dataset has three sentiments: positive, negative & neutral.

Let’s assume our data is in CSV format and looks something like the following:

sentence label
i love autonlp positive
i am not sure if i like this movie neutral
this is the best tutorial ever negative

Here, we see only three samples but you can have as many samples as you like: 5000, 10000, 100000 or even a million or more!

Once you have the data in the format specified above, you are ready to train models using AutoNLP. Yes, it’s that easy.

The first step would be login to AutoNLP:

$ autonlp login --api-key YOUR_HUGGING_FACE_API_TOKEN

If you do not know your Hugging Face API token, please create an account on huggingface.co and you will find your api key in settings. Please do not share your api key with anyone!

Once you have logged in, you can create a new project:

$ autonlp create_project --name sentiment_detection --language en --task multi_class_classification

During creation of project, you can choose the language using “–language” parameter.

The next step is to upload files. Here, column mapping is very important. The columns from original data are mapped to AutoNLP column names. In the data above, the original columns are “sentence” and “label”. We do not need more columns for a multi-class classification problem.

AutoNLP columns for multi-class classification are:

  • text

  • target

The original columns, thus, need to be mapped to text and target. This is done in upload command. You also need to tell AutoNLP what kind of split you are uploading: train or valid.

autonlp upload --project sentiment_detection --split train \
            --col_mapping sentence:text,label:target \
            --files ~/datasets/train.csv

Similarly, upload the validation file:

autonlp upload --project sentiment_detection --split valid \
            --col_mapping sentence:text,label:target \
            --files ~/datasets/valid.csv

Please note that you can upload multiple files by separating the paths by a comma, however, the column names must be the same in each file.

Once you have uploaded the files successfully, you can start training by using the train command:

$ autonlp train --project sentiment_detection

And that’s it!

Your model will start training and you can monitor the training if you wish.