When I do something like:
scoring = ["accuracy", "balanced_accuracy", "f1", "precision", "recall", "roc_auc"]
scores = cross_validate(SVC(), my_x, my_y, scoring = scoring , cv=5, verbose=3, return_train_score=True, return_estimator=True)
how can I get a confusion matrix of a single validation run, e.g. the first one or ideally the best one?
I don't need a plot or something beautiful, only the numbers. If I could see at least the split, then I could recalculate it.