Hello. My code for each training epoch:
wandb.log({
"PR_curve": wandb.plot.pr_curve(y_true, [(x, 1 - x) for x in y_predict])
})
But I had plots like that(the left part):
When I used pyplot I got the right part for some epoche:
As I understand curve for class “1” must be equal to one of curves from second picture.
