hello·ai

AI fundamentals · Phase 1 of 4

Representation

How does text become something a model can compute on?

Before any model does anything interesting, your strings have to become numbers. This phase is about that conversion and everything it quietly decides for you.

Topics in this phase

  1. Tokenization

    6 minUnread

    Text becomes integers before a model sees it, and where the splits fall is learned from statistics, not from grammar.

  2. Embeddings

    6 minUnread

    Text compressed into a fixed-length vector where geometric distance stands in for similarity of meaning.

    After Tokenization

  3. Vector space intuition

    6 minUnread

    Direction carries meaning and length usually does not, which is why almost every similarity measure you will use is an angle.

    After Embeddings

  4. Encoders vs decoders

    6 minUnread

    One architecture reads in both directions to produce vectors, the other reads only backwards so it can write; a single mask is the difference.

    After Embeddings

Examples that open after this phase

Problem statements that make sense once these topics are done. They unlock at the same 80% mark the next phase does.