D1OECD AILit — Designing AI, Competency 1

Data Is the Heart of AI

No Data, No AI

Every AI system learns from data. The quality, quantity, and diversity of that data directly determine how well the AI performs. Mislabeled data causes wrong predictions. Too little data causes unreliable ones. Biased data causes biased AI — quietly, confidently, and at scale. Understanding data isn’t a separate skill from designing AI. It is the design skill.

This is hard for newcomers to accept at first. It feels like the model is the AI — the cool part, the thing with billions of parameters, the thing the company is proud of. The dataset sounds boring, administrative, unsexy. But the practical truth every AI team eventually learns is: two teams with the same model and different datasets will ship very different products. The team with the cleaner, more diverse, more representative data wins, almost regardless of what architecture they chose. The team with the sloppy, lopsided, or biased data ships an AI that embarrasses them — often in ways nobody noticed until a user got hurt.

This mission is about the skill of reading a dataset and knowing, before you train a single model, whether the AI built from it has a chance.

The Data Mistakes Every AI Field Has Made

The history of AI is, in a quiet way, the history of data mistakes and the harm they caused. Every major subfield has a cautionary case, and most of them happened because the team focused on the model and treated the data as a detail.

Face recognition was the first highly publicized failure. In the mid-2010s, multiple commercial face-recognition systems were found to have significantly higher error rates for women and people with darker skin. The 2018 Gender Shades study by MIT researchers Joy Buolamwini and Timnit Gebru documented error rates up to 34% for darker-skinned women compared to near-zero for lighter-skinned men. The models weren’t malicious — the training datasets over-represented one demographic, and the AI learned exactly what it was shown.

Voice assistants had a parallel problem. Early versions of Siri, Alexa, and Google Assistant struggled with Scottish accents, Indian English, African American Vernacular English, and Thai-accented English — because the training data was dominated by a narrow slice of American and British English speakers. Users outside that slice got worse service, got their words transcribed wrong, or just stopped using the product.

Hiring AI learned from history. In 2018, Amazon reportedly scrapped an internal AI resume-screening tool because it systematically downgraded applications from women. The cause: the training data was 10 years of past Amazon hires, which had been predominantly male. The model learned that “good candidate” looked like the historical pattern. It wasn’t deciding who should be hired — it was predicting who had been hired, and calling that prediction a recommendation.

These aren’t just embarrassing stories. They’re the same failure mode, repeated across industries: the data shaped the AI, and the team didn’t look closely enough at what the data actually contained before they trusted what the model produced. Every AI designer has to internalize this — because the pattern keeps happening, in medicine, credit scoring, criminal justice, and education, whenever someone assumes the dataset is “just data.”

Sort Datasets by Quality Tier

Drag each training dataset into the bucket that best describes it. Some flaws are obvious; some are quiet.

Items (8)
High-quality data
Drag items here
Biased data
Drag items here
Insufficient data
Drag items here

Data Lab

Fix the mislabeled training data, then explore what happens with biased datasets.

Some images are mislabeled! Click to toggle between Cat/Dog labels to fix them.

Five Dimensions of Data Quality

When teams review a dataset before training, they don’t ask “is this good data?” That’s too vague. They ask five specific questions — and a dataset that fails on any one can produce an AI that fails in matching ways. This is the core toolkit of data-aware AI design.

1. Representativeness — does the data cover the people the AI will serve? If you’re building a medical AI to be used on a diverse hospital population, but your training data is entirely from one ethnic group, one age range, or one hospital system, the AI will work well for some patients and fail silently for others. The fix isn’t always available — you may need to collect more data before proceeding. Proceeding anyway is the design choice that produces the news-worthy failures.

2. Volume — are there enough examples? Modern AI models learn from huge amounts of data — often millions to billions of examples. When you only have 100 examples of the thing you’re trying to detect, the model doesn’t have enough signal to generalize. It may memorize the training cases and fail on anything slightly different. For rare events — rare diseases, unusual fraud patterns, minority languages — volume is often the real bottleneck.

3. Label quality — are the answers attached to the examples correct? Mislabeled data teaches the AI wrong associations. In many real datasets, 5–15% of labels are subtly wrong — inconsistent judgments between labelers, ambiguous cases, fatigue, cultural misunderstanding. A model trained on sloppy labels isn’t just less accurate; it can be confidently wrong, because it faithfully reproduces the labelers’ mistakes.

4. Freshness — is the data still relevant? Language changes, slang appears and disappears, medical knowledge updates, fraud tactics evolve. A model trained only on data from 2018 won’t understand 2026 memes, won’t know about recent drugs, won’t recognize new fraud patterns. Some domains decay fast (language, security); others slower (mathematics, physics). Knowing how quickly your domain moves tells you how often the dataset needs a refresh.

5. Consent and provenance — where did the data come from, and did the people in it agree? This is the question most early AI teams skipped, and most AI teams can no longer afford to. Using scraped data without consent, or using data collected for one purpose to train a model for another, exposes teams to legal risk and real ethical harm. Good data provenance — knowing who contributed what, under what terms — isn’t a nicety; it’s the floor.

Every design decision in AI starts here. The model inherits what the data contains. If you want to know how your AI will behave in production, look at its training data first, not its benchmarks.
Bias In = Bias Out
If your training data doesn’t represent the real world, your AI won’t work for everyone in it. Historical data often contains the inequalities of the society that produced it — past hiring patterns, past medical outcomes, past arrests. A model that learns from those patterns amplifies them, presenting them back as “what the data shows” or “what the AI recommends.” The fix isn’t more parameters or a bigger model. The fix is earlier and slower: a careful look at the dataset, and the judgment to pause when something important is missing from it.

From “Data Shapes AI” to “Not Every AI Even Uses Data”

So far, the mental model in this track has been: AI = model + training data. That’s true for most of the AI you meet — the chatbots, the image generators, the recommenders, the translators. But it’s not the whole story.

A big chunk of what gets called “AI” — especially inside software you use at work — is actually rule-based. No training data. No learning. Just carefully crafted logic a programmer wrote by hand: if this condition, then that action. Your tax software, the validation in a form, much of the logic inside a game AI, parts of every spam filter — these are rules, not learned patterns. They don’t hallucinate. They don’t need millions of examples. They work exactly as written, which is both their strength and their limit.

The choice between rule-based and machine learning is one of the most important design decisions in AI — and it’s often made poorly, because teams default to whichever approach is fashionable. Rules are usually cheaper, more transparent, and easier to debug. ML is usually better at messy, pattern-heavy problems. Neither is universally “better.” They solve different problems.

In the next mission, “Rule-based vs Machine Learning,” you’ll develop the judgment to pick the right approach for a given problem — and to recognize which one you’re actually working with when you encounter a real system.

Check Your Understanding

1. What happens when training data has wrong labels?
2. What is representation bias?
3. How can you improve AI accuracy?
4. Why is data diversity important?

Answer all questions. You need 70% to pass.