Hi I have a dataset for multi-label classification, I have 14 categories and a decent amount of data. However I’m having issues trying to get the training going.
I have tried one hot encoding or passing the list of classes but keep getting errors.
Basically I have a dataset that looks like this:
{"text":["text1", "text2", "text3"], "labels":[[0,0,0], [1,1,1], [0,1,3]]}
I have been searching a lot of places and there are conflicting things and virtually no documentation on this subject. Does anyone have any code snippets for creating datasets or training such models?
Thanks.