~/runtimelab $ cat ./roadmap/ai
AI/ML Engineer
From what a token is up to a served, retrieval-augmented, tool-using system.
4.Build your own Embeddings
coming soonBuild 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.
Intermediate5.Build an LLM (from scratch)
coming soonBuild a GPT-style language model from scratch — tokenizer, attention, training, and sampling, from raw tokens to generated text. Deterministic and verified end to end.
Advanced6.Build your own Semantic Search
coming soonThe 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.
AdvancedDestination
Serve a retrieval-augmented, tool-using model in production.