A Fabric That Already Comes Pre-Shaped

November 11, 2026 · Part 15 of 20

Opening Scene

A newer kind of material arrives at the shop already pre-molded into common body-shape approximations, thanks to advances in how it’s manufactured. It’s not a finished garment, but it’s not raw, flat fabric either — it’s already been shaped by a process upstream, carrying structure the tailor didn’t have to manually cut in from scratch. The tailor’s job shifts a little: less about carving shape out of flat material, more about refining and adapting shape that already exists.

That shift is a close analogy for what embeddings do to the feature engineering process described throughout most of this series — instead of a person manually engineering every feature by hand, a model learns its own rich, useful representation directly from data.

In Plain English

Embeddings are numeric representations that a model learns automatically, capturing meaningful structure in data — like how similar two words, products, or customers are to each other — without a person manually engineering that structure through explicit rules. Rather than a practitioner deciding every transformation, encoding, and derived feature by hand (the work covered throughout most of this series), an embedding lets a model discover a useful numeric representation on its own, directly from raw or lightly processed data.

The Old Way

Before embeddings were widely available, capturing this kind of structure required exactly the manual work this series has been describing:

  • Hand-encoding categories (Article 3), hoping the chosen encoding scheme happened to capture the categories’ real relationships to each other.
  • Manually deciding which derived features and interactions might matter (Articles 5 and 6), relying entirely on a practitioner’s domain intuition to guess the right combinations.
  • Building proxy features by hand (Article 13) to approximate concepts a raw field couldn’t capture directly.

All of this manual engineering was genuine, valuable craft — and also fundamentally limited by how much structure a person could reasonably anticipate and encode explicitly.

What’s Changing (and Why AI Is the Reason)

  1. Embeddings let a model learn its own useful representation of complex data — text, images, categories with many values — often outperforming manually engineered features for exactly these kinds of complex inputs.
  2. This reduces, but doesn’t eliminate, the need for manual feature engineering — many of this series’ concepts (understanding raw data, handling missing values, avoiding leakage) still apply directly to how a model gets prepared to learn embeddings in the first place.
  3. Pretrained embeddings — built once on large datasets and reused broadly, closely related to the transfer learning concept covered in this content library’s supervised and unsupervised learning series, mean many teams don’t need to learn their own embeddings from scratch at all.

The Metaphor, Fully Extended

Tailor ShopEmbedding Concept
Raw, flat, uncut fabricRaw data with no manually engineered structure
A tailor manually cutting shape by handManual feature engineering, decided explicitly by a person
Fabric that arrives already pre-molded with useful shapeAn embedding — structure learned automatically by a model
The tailor refining and adapting existing shapeFine-tuning or lightly adjusting a learned representation
A shop that only ever works from raw, flat fabricA team that only ever engineers features entirely by hand
Choosing a pre-shaped material designed by someone else’s processUsing a pretrained embedding built by another team or system

For Beginners: What to Actually Do

  • Recognize embeddings as a genuinely different way to get useful features, especially for complex data like text or images that’s hard to manually engineer features for.
  • Understand that embeddings reduce manual feature engineering work — they don’t remove the need for the broader data quality discipline covered throughout this series.
  • When a pretrained embedding is available and relevant to your problem, seriously consider using it before investing heavily in manual feature engineering for that same kind of data.

For Practitioners and Leaders: The Deeper Layer

  • Embeddings can be genuinely powerful, but they’re also less interpretable than manually engineered features — weigh that tradeoff explicitly for use cases where explainability genuinely matters.
  • The choice between manual feature engineering and learned embeddings isn’t all-or-nothing; many strong models combine both, using embeddings for complex inputs and manually engineered features for well-understood structured fields.
  • A pretrained embedding was learned on someone else’s data with someone else’s context — validate that it’s genuinely relevant to your specific problem before assuming it transfers well.

Quick Recap

  • Embeddings are numeric representations a model learns automatically, capturing structure a person would otherwise have to engineer by hand.
  • This mirrors a shift from manually cutting raw fabric to working with material that arrives already meaningfully shaped.
  • Embeddings reduce, but don’t eliminate, the value of the manual feature engineering discipline covered throughout this series.
  • Pretrained embeddings let many teams benefit from this without learning their own from scratch, echoing this content library’s transfer learning coverage.

Where This Fits in the Series

Article 14 covered AI-assisted generation of manually engineered features; this article covered a genuinely different approach — features learned automatically as embeddings. Article 16 asks a related question: how general-purpose should a feature set actually be.