21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544 | class FeatureEngineer:
"""
Orchestrates a sequence of feature engineering steps.
"""
# Resampling steps (SMOTE/undersampling) must only ever run on the train
# split -- applying them to test/validation would fabricate synthetic rows
# or delete real held-out rows purely to balance classes, corrupting any
# metrics later computed on that "held-out" data. Kept as a single shared
# constant (rather than duplicated literals) so `transform()`, `_run_step`,
# and `_collect_step_metrics` can't drift out of sync with each other.
_RESAMPLING_TYPES = {"Oversampling", "Undersampling"}
def __init__(
self,
steps_config: Sequence[PreprocessingStepConfig | dict[str, Any]],
):
# `Sequence` (covariant) accepts list[dict] or list[PreprocessingStepConfig].
self.steps_config = steps_config
self.fitted_steps: list[dict[str, Any]] = []
def transform(self, data: pd.DataFrame | SkyulfDataFrame) -> pd.DataFrame | SkyulfDataFrame:
"""
Apply fitted transformations to new data.
"""
current_data = data
for step in self.fitted_steps:
name = step["name"]
transformer_type = step["type"]
applier = step["applier"]
artifact = step["artifact"]
# Skip splitters during inference/transform
if transformer_type in [
"TrainTestSplitter",
"feature_target_split",
*self._RESAMPLING_TYPES,
]:
continue
logger.debug(f"Applying step: {name} ({transformer_type})")
current_data = applier.apply(current_data, artifact)
return current_data
def fit_transform(self, data: pd.DataFrame | SkyulfDataFrame | Any, node_id_prefix="") -> Any:
"""
Runs the pipeline on data.
Returns: (transformed_data, metrics_dict)
"""
self.fitted_steps = [] # Reset fitted steps
current_data = data
metrics: dict[str, Any] = {}
for i, step in enumerate(self.steps_config):
name = step["name"]
transformer_type = step["transformer"]
params = step.get("params", {})
logger.info(f"Running step {i}: {name} ({transformer_type})")
logger.debug(f"FeatureEngineer running step {i}: {name} ({transformer_type})")
logger.debug(f"current_data type: {type(current_data)}")
# Snapshot before for shape-delta + Winsorize value-clipping metrics
rows_before, cols_before = get_data_stats(current_data)
data_before = current_data
calculator, applier = self._get_transformer_components(transformer_type)
step_node_id = f"{node_id_prefix}_{name}"
current_data, fitted_params, transformer_inst = self._run_step(
transformer_type=transformer_type,
name=name,
calculator=calculator,
applier=applier,
step_node_id=step_node_id,
current_data=current_data,
params=params,
)
if transformer_inst is not None:
# Add node-level performance metrics directly into `metrics` dictionary
metrics["fit_time"] = getattr(transformer_inst, "fit_time", 0.0)
metrics["peak_memory_bytes"] = getattr(transformer_inst, "peak_memory_bytes", 0)
metrics["rows_in"] = getattr(transformer_inst, "rows_in", 0)
metrics["rows_out"] = getattr(transformer_inst, "rows_out", 0)
logger.debug(f"Step {i} complete. New data type: {type(current_data)}")
rows_after, cols_after = get_data_stats(current_data)
self._collect_step_metrics(
transformer_type=transformer_type,
fitted_params=fitted_params,
data_before=data_before,
current_data=current_data,
params=params,
rows_before=rows_before,
cols_before=cols_before,
rows_after=rows_after,
cols_after=cols_after,
name=name,
metrics=metrics,
)
return current_data, metrics
# ------------------------------------------------------------------
# Step execution
# ------------------------------------------------------------------
def _run_step(
self,
*,
transformer_type: str,
name: str,
calculator: Any,
applier: Any,
step_node_id: str,
current_data: Any,
params: dict[str, Any],
) -> tuple: # Returns (data, params, transformer)
"""Execute one pipeline step. Returns (new_data, fitted_params).
Splitters change the data structure (DataFrame -> SplitDataset / (X, y)),
so they bypass StatefulTransformer; everything else goes through the
standard fit_transform wrapper and is appended to fitted_steps.
"""
transformer = StatefulTransformer(
calculator,
applier,
step_node_id,
apply_on_test=transformer_type not in self._RESAMPLING_TYPES,
apply_on_validation=transformer_type not in self._RESAMPLING_TYPES,
)
fitted_params: dict[str, Any] = {}
if transformer_type == "TrainTestSplitter":
logger.debug("Handling TrainTestSplitter")
if isinstance(current_data, (pd.DataFrame, SkyulfDataFrame, tuple)):
params = calculator.fit(current_data, params)
current_data = applier.apply(current_data, params)
else:
logger.debug(f"Skipping TrainTestSplitter. current_data is {type(current_data)}")
logger.warning(
"Attempting to split an already split dataset. Skipping TrainTestSplitter."
)
return current_data, fitted_params, None
if transformer_type == "feature_target_split":
logger.debug("Handling feature_target_split")
params = calculator.fit(current_data, params)
current_data = applier.apply(current_data, params)
return current_data, fitted_params, None
logger.debug("Handling standard transformer via StatefulTransformer")
current_data = transformer.fit_transform(current_data, params)
fitted_params = transformer.params
self.fitted_steps.append(
{
"name": name,
"type": transformer_type,
"applier": applier,
"artifact": fitted_params,
}
)
return current_data, fitted_params, transformer
# ------------------------------------------------------------------
# Metrics collection
# ------------------------------------------------------------------
# Transformer-type groups, kept as class constants so dispatch is data-driven.
_IMPUTATION_TYPES = {"SimpleImputer", "KNNImputer", "IterativeImputer"}
_FEATURE_SELECTION_TYPES = {
"feature_selection",
"UnivariateSelection",
"ModelBasedSelection",
"VarianceThreshold",
}
_SCALING_TYPES = {"StandardScaler", "MinMaxScaler", "RobustScaler", "MaxAbsScaler"}
_OUTLIER_TYPES = {"IQR", "Winsorize", "ZScore", "EllipticEnvelope"}
_BUCKETING_TYPES = {
"GeneralBinning",
"EqualWidthBinning",
"EqualFrequencyBinning",
"CustomBinning",
"KBinsDiscretizer",
}
_FEATURE_GEN_TYPES = {"FeatureMath", "FeatureGenerationNode"}
_ROW_DROP_TYPES = {
"DropMissingRows",
"Deduplicate",
"IQR",
"ZScore",
"EllipticEnvelope",
"Winsorize",
}
_ENCODER_TYPES = {
"OneHotEncoder",
"LabelEncoder",
"OrdinalEncoder",
"TargetEncoder",
"HashEncoder",
"DummyEncoder",
}
def _collect_step_metrics(
self,
*,
transformer_type: str,
fitted_params: dict[str, Any],
data_before: Any,
current_data: Any,
params: dict[str, Any],
rows_before: int,
cols_before: Any,
rows_after: int,
cols_after: Any,
name: str,
metrics: dict[str, Any],
) -> None:
"""Aggregate per-step metrics into the running metrics dict."""
try:
if fitted_params:
self._metrics_from_fitted_params(
transformer_type, fitted_params, data_before, current_data, metrics
)
except Exception as e:
logger.warning(f"Failed to retrieve metrics for step {name}: {e}")
if transformer_type in self._RESAMPLING_TYPES:
self._metrics_resampling(current_data, params, metrics)
if rows_after > 0 or cols_after:
self._metrics_shape_change(
transformer_type,
data_before,
current_data,
params,
rows_before,
cols_before,
rows_after,
cols_after,
metrics,
)
@staticmethod
def _copy_present_keys(
fitted_params: dict[str, Any], metrics: dict[str, Any], keys: tuple[str, ...]
) -> None:
"""Copy each key from fitted_params into metrics, skipping keys that aren't present."""
for key in keys:
if key in fitted_params:
metrics[key] = fitted_params[key]
# Each rule maps a set of transformer types to the fitted_params/metrics key
# to copy over when that transformer type produced it. Keys are the same on
# both sides for every current rule.
_OUTLIER_METRIC_RULES: tuple[tuple[frozenset[str], str], ...] = (
(frozenset({"IQR", "Winsorize"}), "bounds"),
(frozenset({"ZScore"}), "stats"),
(frozenset({"EllipticEnvelope"}), "contamination"),
)
def _apply_outlier_metrics(
self, transformer_type: str, fitted_params: dict[str, Any], metrics: dict[str, Any]
) -> None:
"""Populate outlier-detection related metrics (warnings/bounds/stats/contamination)."""
if transformer_type in self._OUTLIER_TYPES and "warnings" in fitted_params:
metrics["warnings"] = fitted_params["warnings"]
for types, key in self._OUTLIER_METRIC_RULES:
if transformer_type in types and key in fitted_params:
metrics[key] = fitted_params[key]
def _apply_feature_gen_metrics(
self,
fitted_params: dict[str, Any],
data_before: Any,
current_data: Any,
metrics: dict[str, Any],
) -> None:
"""Populate operations count/list and newly generated feature columns metrics."""
if "operations" in fitted_params:
metrics["operations_count"] = len(fitted_params["operations"])
metrics["operations"] = fitted_params["operations"]
new_cols = self._diff_generated_columns(data_before, current_data)
if new_cols is not None:
metrics["generated_features"] = new_cols
def _metrics_from_fitted_params(
self,
transformer_type: str,
fitted_params: dict[str, Any],
data_before: Any,
current_data: Any,
metrics: dict[str, Any],
) -> None:
if transformer_type in self._IMPUTATION_TYPES:
self._copy_present_keys(
fitted_params, metrics, ("missing_counts", "total_missing", "fill_values")
)
if transformer_type in self._FEATURE_SELECTION_TYPES:
self._copy_present_keys(
fitted_params,
metrics,
(
"feature_scores",
"p_values",
"feature_importances",
"variances",
"ranking",
"selected_columns",
),
)
if transformer_type in self._SCALING_TYPES:
self._copy_present_keys(
fitted_params,
metrics,
(
"mean",
"scale",
"var",
"min",
"data_min",
"data_max",
"center",
"max_abs",
"columns",
),
)
self._apply_outlier_metrics(transformer_type, fitted_params, metrics)
if transformer_type in self._BUCKETING_TYPES:
self._copy_present_keys(fitted_params, metrics, ("bin_edges", "n_bins"))
if transformer_type in self._FEATURE_GEN_TYPES:
self._apply_feature_gen_metrics(fitted_params, data_before, current_data, metrics)
@staticmethod
def _columns_diff_if_dataframes(before: Any, after: Any):
"""Return the column-set difference if both objects are DataFrames, else None."""
if isinstance(before, pd.DataFrame | SkyulfDataFrame) and isinstance(
after, pd.DataFrame | SkyulfDataFrame
):
return list(set(after.columns) - set(before.columns))
return None
@classmethod
def _diff_generated_columns_split_dataset(
cls, data_before: SplitDataset, current_data: SplitDataset
):
"""Diff columns for the SplitDataset case, handling both DataFrame and (X, y) train shapes."""
before_train, after_train = data_before.train, current_data.train
diff = cls._columns_diff_if_dataframes(before_train, after_train)
if diff is not None:
return diff
if isinstance(before_train, tuple) and isinstance(after_train, tuple):
x_before, _ = before_train
x_after, _ = after_train
return cls._columns_diff_if_dataframes(x_before, x_after)
return None
@classmethod
def _diff_generated_columns(cls, data_before: Any, current_data: Any):
"""Return the set of newly added columns between two pipeline data objects.
Handles plain DataFrames, SplitDatasets of DataFrames, and (X, y) tuple variants.
Returns None if the structures don't allow a meaningful diff.
"""
diff = cls._columns_diff_if_dataframes(data_before, current_data)
if diff is not None:
return diff
if isinstance(data_before, SplitDataset) and isinstance(current_data, SplitDataset):
return cls._diff_generated_columns_split_dataset(data_before, current_data)
return None
@staticmethod
def _extract_y_from_split_dataset(current_data: SplitDataset, params: dict[str, Any]):
"""Pull the target Series out of a SplitDataset's train split (tuple or DataFrame form)."""
if isinstance(current_data.train, tuple):
_, y_res = current_data.train
return y_res
if isinstance(current_data.train, (pd.DataFrame, SkyulfDataFrame)):
target_col = params.get("target_column")
if target_col and target_col in current_data.train.columns:
return current_data.train[target_col]
return None
@classmethod
def _extract_y_for_resampling(cls, current_data: Any, params: dict[str, Any]):
"""Pull the target Series out of whatever shape the resampler produced."""
if isinstance(current_data, SplitDataset):
return cls._extract_y_from_split_dataset(current_data, params)
if isinstance(current_data, tuple):
_, y_res = current_data
return y_res
if isinstance(current_data, pd.DataFrame | SkyulfDataFrame):
target_col = params.get("target_column")
if target_col and target_col in current_data.columns:
return current_data[target_col]
return None
def _metrics_resampling(
self, current_data: Any, params: dict[str, Any], metrics: dict[str, Any]
) -> None:
try:
y_res: Any = self._extract_y_for_resampling(current_data, params)
if y_res is None:
return
if hasattr(y_res, "to_pandas"):
y_res = y_res.to_pandas()
counts = y_res.value_counts().to_dict()
metrics["class_counts"] = {str(k): int(v) for k, v in counts.items()}
metrics["total_samples"] = int(len(y_res))
except Exception as e:
logger.warning(f"Failed to calculate resampling metrics: {e}")
@staticmethod
def _to_pandas_if_needed(obj: Any) -> Any:
"""Convert obj to pandas via to_pandas() if it supports that, otherwise return as-is."""
return obj.to_pandas() if hasattr(obj, "to_pandas") else obj
@classmethod
def _count_diff_cells(cls, a: Any, b: Any, types: tuple[type, ...]) -> int:
"""Count differing cells between two objects of the given types with matching shape."""
a = cls._to_pandas_if_needed(a)
b = cls._to_pandas_if_needed(b)
if isinstance(a, types) and isinstance(b, types) and a.shape == b.shape:
return int(a.ne(b).sum().sum())
return 0
@classmethod
def _count_winsorize_tuple_diffs(cls, d1: tuple, d2: tuple) -> int:
"""Count differing cells across the X/y halves of two (X, y) tuple pairs."""
diffs = cls._count_diff_cells(d1[0], d2[0], (pd.DataFrame,))
diffs += cls._count_diff_cells(d1[1], d2[1], (pd.DataFrame, pd.Series))
return diffs
@classmethod
def _count_winsorize_diffs(cls, d1: Any, d2: Any) -> int:
"""Count cells that differ between two data objects, for Winsorize clipping metric."""
d1 = cls._to_pandas_if_needed(d1)
d2 = cls._to_pandas_if_needed(d2)
if isinstance(d1, pd.DataFrame) and isinstance(d2, pd.DataFrame):
return cls._count_diff_cells(d1, d2, (pd.DataFrame,))
if isinstance(d1, tuple) and isinstance(d2, tuple) and len(d1) == 2 and len(d2) == 2:
return cls._count_winsorize_tuple_diffs(d1, d2)
return 0
def _metrics_winsorize_clipped(
self, data_before: Any, current_data: Any, metrics: dict[str, Any]
) -> None:
try:
clipped_count = 0
if isinstance(data_before, (pd.DataFrame, SkyulfDataFrame)) and isinstance(
current_data, (pd.DataFrame, SkyulfDataFrame)
):
clipped_count = self._count_winsorize_diffs(data_before, current_data)
elif isinstance(data_before, SplitDataset) and isinstance(current_data, SplitDataset):
clipped_count += self._count_winsorize_diffs(data_before.train, current_data.train)
clipped_count += self._count_winsorize_diffs(data_before.test, current_data.test)
clipped_count += self._count_winsorize_diffs(
data_before.validation, current_data.validation
)
metrics["values_clipped"] = clipped_count
except Exception as e:
logger.warning(f"Failed to calculate values_clipped for Winsorize: {e}")
def _metrics_shape_change(
self,
transformer_type: str,
data_before: Any,
current_data: Any,
params: dict[str, Any],
rows_before: int,
cols_before: Any,
rows_after: int,
cols_after: Any,
metrics: dict[str, Any],
) -> None:
if transformer_type in self._ROW_DROP_TYPES:
dropped = rows_before - rows_after
metrics[f"{transformer_type}_rows_removed"] = dropped
metrics[f"{transformer_type}_rows_remaining"] = rows_after
metrics[f"{transformer_type}_rows_total"] = rows_before
metrics["rows_removed"] = dropped
metrics["rows_total"] = rows_before
if transformer_type == "Winsorize":
self._metrics_winsorize_clipped(data_before, current_data, metrics)
if transformer_type == "MissingIndicator":
new_cols_set = cols_after - cols_before
metrics["missing_indicators_created"] = len(new_cols_set)
metrics["missing_indicators_columns"] = list(new_cols_set)
if transformer_type in {"DropMissingColumns", "feature_selection"}:
dropped_cols_set = cols_before - cols_after
metrics["dropped_columns"] = list(dropped_cols_set)
metrics["dropped_columns_count"] = len(dropped_cols_set)
if transformer_type in self._ENCODER_TYPES:
new_cols_set = cols_after - cols_before
metrics["new_features_count"] = len(new_cols_set)
metrics["encoded_columns_count"] = len(params.get("columns", []))
if "categories_count" in params:
metrics["categories_count"] = params["categories_count"]
if "classes_count" in params:
metrics["classes_count"] = params["classes_count"]
def _get_transformer_components(self, type_name: str):
try:
return (
NodeRegistry.get_calculator(type_name)(),
NodeRegistry.get_applier(type_name)(),
)
except ValueError:
raise ValueError(f"Unknown transformer type: {type_name}") from None
|