Skip to content

Instantly share code, notes, and snippets.

@SaschaHeyer
Created November 10, 2022 11:21
Show Gist options
  • Save SaschaHeyer/2536944665a25d1ed11c16d4fd5e80c7 to your computer and use it in GitHub Desktop.
Save SaschaHeyer/2536944665a25d1ed11c16d4fd5e80c7 to your computer and use it in GitHub Desktop.
Vertex AI Experiments
from sklearn.metrics import confusion_matrix
labels = ["ant", "bird", "cat"]
y_true = ["cat", "ant", "cat", "cat", "ant", "bird"]
y_pred = ["ant", "ant", "cat", "cat", "ant", "cat"]
classification_metrics = {
"matrix": confusion_matrix(y_true, y_pred, labels=labels).tolist(),
"labels": labels
}
print(classification_metrics)
aiplatform.log_classification_metrics(
labels=classification_metrics["labels"],
matrix=classification_metrics["matrix"],
display_name="my-confusion-matrix",
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment