In [https://pytorch.org/tutorials/intermediate/tensorboard_tutorial.html#](url), section 6, Assessing trained models with TensorBoard, there are these two lines. class_probs.append(class_probs_batch) class_preds.append(class_preds_batch) Shouldn't the second line be class_preds.append(labels) instead? because later `add_pr_curve` takes ground truth labels instead of predicted labels.