View Normalized Confusion Matrix from the Web UI

Hi,

I’ve logged a lot of data using wandb.sklearn.plot_classifier(model,X_train=X_train,X_test=X_test,y_train=y_train,y_test=y_test,y_pred=y_pred,y_probas=y_probas,labels=labels,model_name=model_name,feature_names=None)

On the web UI, how can I view the NORMALIZED confusion matrix on the web UI?

Thanks.

Hey @ahs63, you can get a normalized confusion matrix in the UI using our wandb.sklearn.plot_confusion_matrix function along with the normalize='true' parameter:

import wandb

# Get the true and predicted labels
y_true = ...
y_pred = ...
labels = ...

# Plot the confusion matrix
wandb.sklearn.plot_confusion_matrix(y_true, y_pred, labels, normalize='true')

Hi Aik, since we have not heard back from you we are going to close this request. If you would like to re-open the conversation, please let us know!

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.