What AI actually is
Before we can keep AI safe, we need to know what it is. Short answer: it is a machine that guesses really, really well.
In 60 seconds
What AI actually is
Before we can keep AI safe, we need to know what it is. Short answer: it is a machine that guesses really, really well.
Three words people mix up
| Word | Simple meaning | Everyday example |
|---|---|---|
| AI | Any machine doing something that looks clever | A chess computer |
| Machine learning | The machine learns the pattern from examples instead of being told the rules | Spam filter in your email |
| Deep learning | Machine learning using very large layered networks of numbers | Face unlock, ChatGPT, self-driving cars |
Why this matters for safety
Watch and read more
Lab
A hand-built pattern matcher, and the moment it fails.
The problem
def classify(sentence: str) -> str:
# your rules here
return "question" if sentence.strip().endswith("?") else "statement"
tests = [
"What time is it?",
"I wonder what time it is.",
"Tell me the time",
"You're joking?!",
"Is it raining, or did someone water the plants",
]
for t in tests:
print(f"{classify(t):10} <- {t}")You are done when
Hard questions
Try to answer before you reveal. If you can answer these, you understood the lesson.
Q1You added twenty rules and accuracy went up. Why is this still not machine learning, and why does that matter?Reveal
Q2A model gets 99% on your test set. Give two completely different reasons this number could be worthless.Reveal
Questions people ask
Is AI actually thinking?
No. It is matching patterns very fast. It can produce text that sounds thoughtful, because it learned from text written by thinking people. Whether that ever becomes real thinking is the AGI question in Track C.
Does AI ever just make things up?
Yes, and constantly. It is a guessing machine, so when it does not know, it still guesses. A confident wrong answer is called a hallucination. It looks exactly like a right answer, which is what makes it dangerous.
Can AI be wrong in a way nobody notices?
Easily. If the training examples were biased, the guesses will be biased in the same way, quietly, at scale. A hiring model trained on a company's past hires learns that company's past habits, good and bad.
Do I need maths to understand this guide?
None at all. Every idea here works as a story about people, doors, keys and messages.
Lesson test
5 questions. Get 3 right (60%) to pass and complete this lesson.
Sign in with your phone number to take the test and save your progress