Open
Description
I'm not sure why we deliberately exclude multi-metric scoring in cross_val_score
. cross_validate
(which cross_val_score
calls, supports it, and we could simply return the multi-metric scores calculated by it.
This is our cross_val_score
:
scikit-learn/sklearn/model_selection/_validation.py
Lines 576 to 591 in 405a5a0