We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4303144 commit 58b0c31Copy full SHA for 58b0c31
skore/src/skore/_sklearn/_comparison/metrics_accessor.py
@@ -245,6 +245,8 @@ def _compute_metric_scores(
245
246
if isinstance(kwargs["scoring"], str):
247
scorings = [kwargs["scoring"]]
248
+ elif kwargs["scoring"] is None or callable(kwargs["scoring"]):
249
+ scorings = [] # No processing needed
250
else:
251
scorings = kwargs["scoring"]
252
0 commit comments