Skip to content

Transformer Pipeline (Engineering View)

Role

In this codebase, “transformer” often refers to the transform stage inside an ETL pipeline (e.g. raw → windows, or windows → feature vector), not to a separate standalone pipeline. The Features pipeline is the main place where “transformation” from windows to feature rows happens.


Where It Fits

  • ETL architecture: Each pipeline type has a Transformer component (see ETL architecture) that implements the “raw → useful shape” step.
  • Feature vectorization: The features pipeline uses a FeatureVectorizer (and optionally temporal context) to produce one feature row per window; that is the main “transformer” for ML.

Full Reference