Skip to content

Commit

Permalink
fix: log_classification_metrics (#1742)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaycee-li authored Oct 20, 2022
1 parent 9e77c61 commit 3588526
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions google/cloud/aiplatform/metadata/experiment_run_resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,8 @@ def log_classification_metrics(
if (fpr or tpr or threshold) and not (fpr and tpr and threshold):
raise ValueError("fpr, tpr, and thresholds must be set together.")

confusion_matrix = confidence_metrics = None

if labels and matrix:
if len(matrix) != len(labels):
raise ValueError(
Expand Down

0 comments on commit 3588526

Please sign in to comment.