The one question to ask
Whenever you meet a piece of AI, ask one question: what is it predicting, and from what data? Take the recommendations on YouTube, TikTok or Spotify. The model is not judging your taste. It predicts one thing: will you keep watching this? It learned that from what millions of people with histories like yours watched next, and how long they stayed. A system like this is called a recommendation system. Every skip and every replay is a new label. That is why your feed changes within a day of your interests changing. You are training it constantly.
What each one predicts
| Where | What it predicts | Learned from |
|---|---|---|
| Video and music feeds | Whether you will keep watching | What people like you watched and skipped |
| Maps | How long the trip will take | Millions of past trips, plus live traffic |
| Spam filter | How spam-like an email is | Emails people marked as spam or not |
| Face unlock | Whether this face is yours | The face pattern it learned when you set it up |
| Autocorrect | The word you meant to type | Huge amounts of typed text and corrections |
| Translation | The same sentence in another language | Millions of matching sentence pairs |
The ones that see
Some AI works on pictures instead of words. Teaching a computer to understand images is called computer vision. Face unlock is the version in your pocket. When you set it up, the phone learns a pattern of your face. Each time you look at it, a model scores how closely the new face matches, and a threshold decides whether to unlock. The same idea now helps doctors. Models trained on huge numbers of X-rays and scans can flag spots that look worrying, so a radiologist looks there first. As of 2026 these are used in many hospitals as a second pair of eyes. The doctor still makes the call.
Games: scripted enemies and learned champions
Video games are a nice reminder of lesson 1. Most classic game enemies are rule-based: if the player is close, attack; if health is low, run. A designer wrote those rules. That is AI in the old sense, and it is fine for a guard on patrol. Learned game AI is different. In 2016 a program called AlphaGo beat one of the world's best Go players, in a game far too complex for hand-written rules. It learned from millions of games and from playing against itself. Learning from wins and losses rather than labels is called reinforcement learning.
The pattern behind all of them
- Each one takes an input, produces a score or a ranking, and a threshold or a sort order turns that into an action.
- The training data mostly comes from people using the product, which is why these systems improve the more they are used.
- None of them understands you. Each one is very good at predicting one narrow thing.
So, should you worry?
That is a lot of models quietly making predictions about you, from your data. Some of it is convenient. Some of it deserves a careful look, especially where the stakes are high. Next: an honest answer to whether AI is dangerous, without the movie version.
Check yourself · 3 quick questions
What does a maps app predict when it shows an arrival time?
Show answer
How long the trip will take, based on past trips and live traffic — The model learned from millions of past trips, plus live traffic, to predict how long yours will take.
What does a recommendation system mostly learn from?
Show answer
What people with similar histories watched and skipped — It predicts whether you will keep watching by learning from what people with histories like yours did next; every skip and replay is a new label.
Which of these is usually rule-based rather than learned?
Show answer
A classic game guard that attacks when you get close — Classic game enemies follow rules a designer wrote, such as "if the player is close, attack"; the others learned from data.