0

I want to work with the sentiment140 dataset for a sentiment analysis task, as I saw that it contains normally the following labels :

But after importing it on my notebook it tells me that it contains just two labels :

  • 0 for neg
  • 4 for pos !!!

enter image description here

So how to get full dataset with the three labels ?

cronoik
  • 15,434
  • 3
  • 40
  • 78
Khadija
  • 72
  • 1
  • 8

1 Answers1

0

You are correct on the fact that the HuggingFace sentiment140 dataset only contains 2 labels in the training set (0 and 4); however, the test set contains the 3 labels (0, 2 and 4).

You could open a discussion here to ask the authors if this is normal.

Clef.
  • 487
  • 3
  • 14