Python Forum

Full Version: How to plot confusion matrix of multiclass classification
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
y_pred.shape = (91,48)
y_true.shape = (91,48)

I want confusion matrix of (48X48)
When I print confusion matrix using argmax, It gives matrix of (43X43)
without argmax it gives me error: " Classification metrics can't handle a mix of multilabel-indicator and continuous-multioutput targets"