AI news can consume every hour you meant to spend learning AI. A new model arrives, benchmarks move, interfaces change and yesterday's tutorial becomes a screenshot of a discontinued menu. The durable parts of the field move more slowly: representation, data, optimization, evaluation, uncertainty, deployment and responsibility.

This roadmap is for a technically curious reader who wants a working mental model and useful practice, not a graduate degree in six weeks. It does not promise mastery. It gives each layer a concrete output so progress can be inspected without turning product announcements into a curriculum.

Calm study desk with six blank cards arranged across an open notebook, reference books, abacus and timer
The six blank cards represent the roadmap's six learning stages. The books and tools are generic, not endorsements or representations of specific courses. This is an original AI-assisted editorial photograph.
The ruleLearn one durable concept, reproduce one small result and write one limitation each week. Product news enters only when it helps test the current concept.

Define the outcome before choosing resources

“Learn AI” is too broad to finish. Choose a near-term capability: evaluate an AI feature for work, build a small classifier, understand language-model limits, manage an AI project or read research without being carried by the abstract. The roadmap shares a foundation, but exercises should point toward that outcome.

Write a finish artifact: a six-page notebook, a small reproducible project, a procurement memo or an evaluation harness. A playlist is not evidence of learning. An explanation, prediction or test that survives contact with results is.

Budget four to six hours per week. If you have less, stretch one week into two rather than skipping the experiment. If you already code, use Python notebooks. If you do not, use the interactive exercises in Google's Machine Learning Crash Course and write plain-language analyses. Code is a tool here, not a gatekeeping ritual.

Week 1: models, data and the shape of a prediction

Learn the difference among rules, supervised learning, unsupervised learning and reinforcement learning. Identify features, labels, examples, training data and inference. Understand that a model maps inputs to outputs under assumptions learned from data; it is not a database of truth.

Exercise: choose a familiar decision—spam detection, house-price estimation or image classification. Write five possible features, the target, one source of label error and one group for whom the error could matter. Then change the target definition and note how the “same” problem becomes a different system.

Output: one page explaining what the model predicts, what it does not predict and how the data was produced. Google's official Machine Learning Crash Course provides self-contained modules on foundational concepts and data.

Week 2: loss, fitting and generalization

Learn why training optimizes a measurable objective rather than intelligence in general. Understand train, validation and test splits; overfitting; regularization; leakage; precision and recall. Accuracy is useful only in relation to class balance and the cost of different errors.

Exercise: make a tiny table of twenty examples for a binary decision. Change the threshold and count false positives and false negatives. Ask which error is more expensive. The point is not statistical sophistication; it is seeing that “best model” depends on a decision.

Output: a model card fragment with intended use, unacceptable use, metric and known limitation. Read A Benchmark Is Not the Real World before turning a score into a deployment claim.

Week 3: neural networks and representations

Learn what layers, weights, activations, gradients and embeddings do at a practical level. Avoid the two common exaggerations: that a neural network is merely a lookup table, or that its biological inspiration makes it a brain. It is a parameterized computational system trained to reduce an objective.

Exercise: use an interactive neural-network playground or a course notebook to vary depth, learning rate and features on a simple dataset. Predict what will happen before each change. Record where intuition fails.

Output: a diagram you can explain without metaphors. Label input, transformation, loss and update. If a term cannot be defined operationally, add it to a question list instead of covering it with “the model learns patterns.”

Week 4: language models without magic words

Learn tokenization, next-token prediction, context windows, pretraining, instruction tuning, retrieval and tool use. Separate the base model from the full product: interface, system instructions, search, memory, moderation and external tools can all change behavior.

Exercise: ask one factual question in three conditions: no supplied source, a relevant primary source and a misleading source. Compare claims and citations. Then repeat in a new session. Record variability rather than preserving only the best answer.

Output: a one-page system map showing which component produced which evidence. Use the AI citation verification protocol and the blinded comparison guide.

Week 5: evaluation before automation

Learn to define a task distribution, representative cases, failure classes and a review threshold. A demo asks whether the tool can succeed once. An evaluation asks how it behaves across the work that matters, including edge cases and adversarial inputs.

Exercise: build ten cases: four ordinary, two ambiguous, two high-cost and two deliberately difficult. Write the scoring rule before running the system. Review false confidence separately from ordinary error.

Output: a small evaluation sheet with input, expected properties, result, severity and reviewer decision. If the system affects other people, include privacy, accessibility and recourse. NIST's AI Risk Management Framework organizes risk work around govern, map, measure and manage; it is guidance, not a universal certification.

Week 6: deployment, monitoring and responsibility

Learn the difference between a model and a service. Real systems add permissions, data pipelines, logs, fallbacks, human review, latency, cost and incident response. A model that performs well in a notebook can fail because inputs drift, interfaces change or people rely on it outside the intended use.

Exercise: write a pre-mortem for one AI workflow. Assume it caused harm six months after launch. Identify the earliest detectable signal, who could stop it, which record would explain the decision and how the system would be rolled back.

Output: a deployment decision record. The site's AI workflow audit covers test cases, review gates, permissions, logging and rollback.

The competency matrix

Concept → evidence → boundaryWeek 1: define the prediction → data sketch → target is not reality.
Week 2: choose a metric → threshold test → metric encodes costs.
Week 3: explain representation → controlled experiment → metaphor is not mechanism.
Week 4: map the LLM system → source-conditioned test → fluency is not verification.
Week 5: evaluate the task → fixed test set → a demo is not a distribution.
Week 6: govern deployment → pre-mortem and rollback → automation does not remove responsibility.

This is the citation-ready core of the roadmap: every topic must end in evidence and a boundary. If a resource supplies vocabulary but no test, add a test. If it supplies a demo but no limitation, write the limitation yourself.

Choose resources by job, not prestige

  • Conceptual orientation: the University of Helsinki and MinnaLearn's Elements of AI is designed for broad accessibility. Its companion Building AI moves toward practical methods.
  • Structured technical practice: Google's Machine Learning Crash Course includes interactive exercises across fundamentals, neural networks, language models, production systems and fairness. Modules change, so use the official outline rather than an old third-party schedule.
  • Deeper implementation: choose one course whose prerequisites and exercises match your goal. Do not collect three overlapping introductions.
  • Context and critique: use the site's book guide as a reading track, not a shopping list.
  • Current product knowledge: read release notes only for tools you are evaluating or operating. Treat them as change logs, not foundational education.

Commercial disclosure and no-buy guidance

This page contains direct, non-affiliate references to free or official learning resources. Life in the Simulation has no approved affiliate program for these links and receives no commission from them. Course availability and curricula can change; verify the current syllabus before paying for any program.

Do not buy a course because it promises to make the field stop changing. Do not buy certificates whose value depends on an employer you have not asked. Pay when structured feedback, maintained labs, instructor access or a recognized prerequisite solves a real constraint. Free official materials plus a small project are enough to test whether you need more.

Use a release gate for AI news

  1. Does the release change a tool you currently use, evaluate or govern?
  2. Does it challenge a concept in your roadmap with reproducible evidence?
  3. Can you test the claim with a fixed task rather than watch a selected demo?
  4. Will learning it change a decision within thirty days?

If every answer is no, save the item for a monthly review. The field will still be there. Attention spent refreshing leaderboards is attention not spent building a testable model of how systems work.

The final audit

At the end of six weeks, explain one AI system at three levels: the task it performs, the mechanism class it uses and the operational system around it. Show one evaluation where your prediction was wrong. Name one risk you can measure and one uncertainty you cannot yet resolve.

If you can do that, you have a foundation. If you can only list product names and benchmark positions, repeat the roadmap with fewer news sources and more experiments. Durable learning feels slower because it leaves something behind.

Official sources


END OF FIELD GUIDE 052

Keep the question. Test the model.

Choose the narrowest claim the evidence can carry, then leave room for revision.