Hi, I am new to Automl and trying it out but so far unable to see the confusion matrix outputs for each pipeline. So far I have:
from evalml.model_understanding.graphs import graph_confusion_matrix
# pipeline trained with log loss
ll_pipeline = automl.best_pipeline
ll_pipeline.score(X_test, y_test, ['precision'])
y_pred = ll_pipeline.predict(X_test)
graph_confusion_matrix(y_test, y_pred)
which outputs the "best" pipeline but I need to see the confusion matrix outputs for each pipeline. Can any please help? Thank you!