From 335ab3c707f5e93aa237dc74e47b777ccc002d89 Mon Sep 17 00:00:00 2001 From: Cedric Lorenz Date: Fri, 25 Sep 2026 14:12:13 -0700 Subject: [PATCH] Keep feature category alignment in benchmarks --- benchmark/tabular/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/tabular/model.py b/benchmark/tabular/model.py index 5a5caead5..0bb54f018 100644 --- a/benchmark/tabular/model.py +++ b/benchmark/tabular/model.py @@ -353,7 +353,7 @@ def _create_recipe(self) -> sdm.Recipe: recipe = super()._create_recipe() # TabArena aligns features with its fitted generator and targets with # its label cleaner. - for pipeline in (recipe.features, recipe.target): + for pipeline in (recipe.target,): stype_dispatch = next( processor for processor in pipeline.modules()