Hi,
I just made a confusion matrix in validation step, but it overlapped like this during training.
I want to make a confusion matrix or table that can be seen by epoch.
wandb.log({
"Confusion Matrix": wandb.sklearn.plot_confusion_matrix(
y_true=targets,
y_pred=outputs,
labels=['Normal','COVID','Others']
)
})
Is there any way to solve this?