← All career paths

~/runtimelab $ cat ./roadmap/ai

AI/ML Engineer

From what a token is up to a served, retrieval-augmented, tool-using system.

3 challengesends in: Serve a retrieval-augmented, tool-using model in production.
  1. 4.Build your own Embeddings

    coming soon

    Build word and sentence embeddings from scratch — co-occurrence counts, PPMI, truncated SVD, then skip-gram with negative sampling — and measure them against analogy and similarity benchmarks instead of eyeballing a nearest-neighbour list.

    Intermediate
  2. 5.Build an LLM (from scratch)

    coming soon

    Build a GPT-style language model from scratch — tokenizer, attention, training, and sampling, from raw tokens to generated text. Deterministic and verified end to end.

    Advanced
  3. 6.Build your own Semantic Search

    coming soon

    The retrieval system around the index, not the index itself — chunking, query and document asymmetry, BM25, reciprocal-rank fusion and reranking, scored with recall@k, nDCG and MRR. It calls a nearest-neighbour index; vector-db is the course that builds one.

    Advanced
  4. Destination

    Serve a retrieval-augmented, tool-using model in production.