I would like to know how to enlist multiple labels in the uploaded file for the multi-class classification?
Is this a correct approach?
{"text": "It is a great day today", "label": ["positive", "clear_statement"]}
{"text": "It is a bad xxsks", "label": ["negative", "unclear_statement"]}
We’ve generally been a little skittish on multi-label classification specifically because it doesn’t really work with the autoregressive nature of our models. The first label generated influences the second label generated and usually users want the labels considered independently of each other.
Instead, we usually suggest folks upload a file with the same texts and different sets of labels. in your case, you might have a file with just the positive/negative label and another with unclear/clear.
2 years later, I have the same issue than sbharati and I hope that the time or the team solved the problem
@sbharati Did you find an other way to do what you wanted ? @hallacy Do we still need to create severals fine-tuning models for multi label classification ?