Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGoyette committed Nov 5, 2020
1 parent 5aeb605 commit 817ecaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wandb/plot/confusion_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def confusion_matrix(preds=None, y_true=None, class_names=None):
data.append([class_names[i], class_names[j], counts[i, j]])

fields = {"Actual": "Actual", "Predicted": "Predicted", "nPredictions": "Count"}
print("Im returning")

return wandb.plot_table(
"wandb/confusion_matrix/v0",
wandb.Table(columns=["Actual", "Predicted", "Count"], data=data),
Expand Down

0 comments on commit 817ecaf

Please sign in to comment.