I am doing multi-class classification shape of data is (299,6) and the shape of labels is (299,5). Here is the sample of data that i have
[[0.004873972,0.069813839,-0.470500136,2.285885634,0.5335,0.052915143],
[0.001698812,0.041216647,-0.01333925,2.507806584,0.2332,0.123463255],
[0.005954432,0.077164967,4.749752766,26.45721079,0.1663,0.186452725],
[0.001792197,0.042334345,-0.176201652,1.9656153,0.4001,0.087055596],
[0.001966929,0.044350068,0.182059972,1.610369693,0.55,0.29675874]]
Here is the labels for this data labels for data[[1,0,0,0,0],[0,0,0,1,0],[0,0,0,1,0],[0,0,1,0,0],[0,1,0,0,0]]
stored in csv file.
I tried svm and logistic regression but gives me error ValueError: bad input shape (299, 5),the error is in the labels but how i can resolve this.
[sample dataset][1]
[1]: https://i.stack.imgur.com/Wncqy.png