I am using SVM classifier for multi class classification.
I want svc.predict to return the result along with probabilities for the other classes also.
The result i got is like this:
print(svclassifier.predict([[79,93,60,50,50,80,81,88,87,100,100,71,100,83,100,100,75,70,100,60]]))
Expected OutPut is the category number= 27
Output Obtained is: 27
But I want the output in the form of probabilities....