Created
November 10, 2022 11:21
-
-
Save SaschaHeyer/2536944665a25d1ed11c16d4fd5e80c7 to your computer and use it in GitHub Desktop.
Vertex AI Experiments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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