This commit is contained in:
2025-08-15 08:08:11 +02:00
parent 9601c5e44d
commit 7b652d6999
17 changed files with 28 additions and 60 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ class FeatureExtractionStep(PipelineStep):
def _process_simple_names(self, df: pd.DataFrame) -> None:
"""Process 3-word names efficiently with vectorized operations"""
mask = df["words"] == 3
mask = pd.Series(df["words"] == 3)
if not mask.any():
return