AI Literacy Is the New Digital Literacy
Prompting is not a skill — evaluation is. A practical curriculum for judging model output, measuring drift and knowing when not to use a model at all.
Every few years a skill moves from specialist to baseline. Spreadsheet fluency did it in the 1990s, search literacy in the 2000s, and version control somewhere around 2012. Artificial intelligence is doing it now — but the skill that is becoming baseline is not the one most curricula are teaching.
Why prompting is not the skill
The first wave of AI education taught prompting: phrasing, role instructions, few-shot examples, chain-of-thought. It was useful and it aged badly. Model interfaces improved, defaults got better, and the specific incantations that worked in one release stopped mattering in the next. A curriculum built on phrasing tricks has a shelf life measured in months.
What has not aged is the harder skill underneath: deciding whether the output in front of you is good enough to act on. That is an evaluation problem, and evaluation is a discipline with forty years of literature behind it. It does not go out of date when a model version increments.
In our AI track we spend roughly one session on prompting and eleven on evaluation, measurement and failure analysis. Mentees find this frustrating for about three weeks, and then they start catching things their more experienced colleagues miss.
The four layers of AI literacy
We teach AI literacy as four stacked layers. Each one is useful alone; each one is dangerous without the layer beneath it.
- Mechanical. What kind of system is this? A retrieval system, a classifier, a generative model, a hybrid? What was it trained on, when, and by whom? You cannot reason about failure modes without knowing the shape of the thing.
- Statistical. What does the output distribution look like? Where is the model confident, where is it confidently wrong, and what does its confidence score actually represent? Calibration is the single most misunderstood concept in applied machine learning.
- Evaluative. Against what standard are you judging this? A golden dataset, human review, downstream task performance, or a vibe? If the answer is the last one, you do not have an evaluation — you have an opinion with a graph.
- Consequential. Who is affected when this is wrong, how would they find out, and what recourse do they have? A misclassified product recommendation and a misclassified loan application are the same technical error and completely different events.
Most commercial AI failures we have examined with mentees are not layer-one failures. Nobody deployed a classifier thinking it was a database. They are layer-three and layer-four failures: a system evaluated against the wrong standard, shipped to a population that had no way to contest its output.
Building an evaluation habit
Evaluation is a habit before it is a technique. The habit is: never look at a single output in isolation. One good answer tells you almost nothing; twenty answers across a deliberately varied set tells you a great deal.
We ask mentees to build what we call a personal eval set in week two of the track. It is deliberately small — thirty to fifty items — and deliberately adversarial. The rules are simple:
- Include at least five items where you know the correct answer with certainty, because you produced it yourself.
- Include at least five where the correct answer is genuinely contested, and write down what a defensible range looks like.
- Include at least five that are out of scope, where the right behaviour is to refuse or express uncertainty.
- Include at least five that are near-misses of your in-scope items — the cases that look answerable and are not.
- Re-run the whole set whenever anything changes: the model, the prompt, the retrieval corpus, the temperature, the wrapper library.
Thirty items sounds trivially small next to a benchmark of ten thousand. It is, and that is fine. The purpose is not to publish a leaderboard result; it is to make regression visible to one person working on one system. A mentee who runs a thirty-item set weekly will catch more real problems than a team that runs a ten-thousand-item benchmark once a quarter.
| Method | Cost | Catches | Misses |
|---|---|---|---|
| Personal eval set | Very low | Regressions, obvious drift | Rare and long-tail failures |
| Golden dataset | Medium | Systematic accuracy changes | Distribution shift in production |
| Human review sample | High | Subtle quality and tone problems | Anything statistically rare |
| A/B on downstream metric | High | Whether it helps the actual goal | Why it helps or hurts |
| Shadow deployment | High | Real-traffic behaviour, safely | Effects that depend on user awareness |
Drift, and the maintenance problem nobody budgets for
A model is not a feature you ship. It is a feature that starts decaying the moment it meets production, because the world it was trained on keeps moving and the training data does not.
Three kinds of drift matter in practice, and mentees should be able to name and detect all three:
- Data drift. The inputs change shape. A fraud model trained before a new payment method launches sees traffic it has never encountered.
- Concept drift. The inputs look the same but the correct answer changes. Spam does not look different because your filter improved — spammers change what they send because your filter improved.
- Feedback drift. The model's own outputs change the world it measures. A recommendation system that surfaces popular items makes those items more popular, then reports that it predicted popularity well.
Feedback drift is the one that catches experienced engineers, because the metrics look excellent right up until the system has quietly narrowed the world it operates in. The detection technique is straightforward and rarely done: hold out a small random slice of traffic from the model entirely, permanently, and compare.
A model with no maintenance budget is a liability with a launch date.
Marcus Bell, Director of Curriculum, BTMP
Knowing when not to use a model at all
The most valuable output of AI literacy is the ability to say, credibly and with reasons, that a model is the wrong tool here. This is career-defining in a way that prompt fluency never will be, because it is the judgement that senior people are actually paid for.
Our working heuristic, which mentees learn to apply and then to argue with:
| Condition | Why a model struggles | Better default |
|---|---|---|
| The rule is known and stable | You are asking a model to rediscover something you already wrote down | Write the rule |
| Errors are expensive and unrecoverable | Probabilistic output plus irreversible action is a bad pairing | Deterministic system with human confirmation |
| You cannot define correct | With no ground truth there is no evaluation, only preference | Define the problem before you model it |
| Training data reflects a past you are trying to change | The model will faithfully reproduce the pattern you object to | Redesign the process first |
| The volume is small | Maintenance cost exceeds the work being automated | Do it manually, measure, revisit |
Notice that only one of these rows is technical. The rest are questions about the problem, the consequences and the organisation. That is the point. AI literacy is mostly not about AI.
A twelve-week self-study path
If you cannot join a programme right now, here is the sequence we would use anyway. It assumes six to eight hours a week and no prior machine learning background — only comfort with a programming language and a willingness to be wrong in writing.
- Weeks 1–2: probability you can defend. Conditional probability, base rates, Bayes. Work through twenty worked problems by hand before touching a library.
- Weeks 3–4: build a classifier from scratch. Logistic regression, no framework. Implement the loss, the gradient and the training loop yourself.
- Weeks 5–6: evaluation. Precision, recall, ROC, calibration curves, and why accuracy on an imbalanced set is a lie. Build your thirty-item personal set.
- Weeks 7–8: a real dataset with real problems. Missing values, leakage, temporal splits. Find the leakage deliberately; it is always there the first time.
- Weeks 9–10: modern architectures at working depth. Enough transformer understanding to reason about context, attention cost and why long inputs behave oddly.
- Weeks 11–12: deploy something small. An endpoint, a monitor, a rollback plan and a written evaluation. The deployment is the assignment; the model can be mediocre.
At the end of twelve weeks you will not be a research scientist. You will be something the market is shorter of: a person who can be handed a model and asked, credibly, whether it should be trusted.
Frequently asked questions
No, but you need working comfort with probability, linear algebra and calculus at the level of a solid first-year course. The people who struggle are not the ones without a degree — they are the ones who skipped the statistics and went straight to frameworks.
The research frontier is crowded. The applied layer — evaluation, deployment, monitoring, integration — is chronically understaffed and pays well. That is where most of the actual work is, and it is wide open.
Python, for the ecosystem. Then learn one language with explicit memory behaviour so that performance questions stop being magic.
Publish an evaluation. Take a public model, build a real eval set for a specific task, document where it fails and why, and write it up honestly. That artefact is rarer and more persuasive than another fine-tuning notebook.
Key takeaways
- Prompting is a perishable skill; evaluation is a durable one.
- Build a thirty-item personal evaluation set in week two and re-run it on every change.
- Name and detect all three kinds of drift — data, concept and feedback.
- Feedback drift is invisible in your metrics unless you permanently hold out a control slice.
- The most senior judgement in applied AI is knowing when not to use a model.
Marcus Bell
Director of Curriculum, BTMP
Writes here about the parts of the work that are rarely taught and always tested. Mentors on the programme and reviews cohort capstones.