I’ve logged a confusion matrix like the below but I cannot find it listed anywhere on the dashboard of my project for any run. Indeed, I logged this for every step of the training (not every epoch). So where is the confusion matrix stored?
I found out I had a bug in my code, now it is showing. However, I’d like to show the counts for all steps rather than a single one. How I can use log() to aggregate all the counts for the confusion matrix like we do for loss and such?
HI @mesllo , I’m glad you discovered that bug that was impacting your chart. In regards to show counts for all steps, that’s not currently doable directly. This would have to be done locally where you keep track of your class predictions per step, aggregate the results and then log the confusion matrix to wandb.
Although this doesn’t address your particular request, you can generate a step slider for your matrix, see here, and you can see your confusion matrix results per step.