Watson Won Jeopardy. Now What?
Last week a computer beat Ken Jennings and Brad Rutter at Jeopardy, and the reaction has been about what you’d predict. Half the coverage says the machines are here. The other half says it was a parlour trick.
Both are wrong, and the reason they’re wrong is more interesting than either position.
What Watson Actually Is
Start with the physical facts, because they’re clarifying.
Watson ran on 90 IBM Power 750 servers, roughly 2,880 processor cores, with about 16 terabytes of memory. It was not connected to the internet during the game. Everything it knew had been loaded in advance, something on the order of 200 million pages of text including all of Wikipedia.
It had roughly three seconds per question.
The architecture, which IBM calls DeepQA, is not one clever program. It’s about a hundred different techniques running at once, each generating candidate answers and evidence for them, with a scoring layer on top that weighs the results and produces a confidence number.
That’s the actual innovation, and it’s worth sitting with. Nobody built a machine that understands questions. They built a machine that generates hundreds of guesses in parallel, gathers evidence for each, and is unusually good at working out which of its own guesses to trust.
“The impressive part isn’t that it knew the answers. It’s that it knew how confident to be, in three seconds, and buzzed only when the number was high enough.” — Sameer Gupta
Watch the games again and you’ll see it. Watson passed on questions it could have guessed at. The confidence threshold was doing as much work as the retrieval.
Why the Trivia Framing Misleads Everyone
Jeopardy clues are ambiguous, full of wordplay, and written by people trying to be clever. Handling that is a genuine achievement in natural language processing and I don’t want to diminish it.
But Jeopardy also has properties that your business does not:
- Every question has one correct answer, agreed in advance by a producer.
- The answer exists in a fixed, curated corpus that somebody loaded and cleaned.
- There are no consequences for being wrong beyond losing money on a game show.
- The question arrives in complete, grammatical English, not as a half-sentence from a frustrated customer at eleven at night.
Most business questions fail all four. “Should we extend credit to this customer” has no producer-approved answer, no curated corpus, real consequences, and arrives as a mess of half-complete records.
The Bit That Does Transfer
I’d point at one thing, and it’s not the trivia.
Confidence scoring is underused everywhere. Most business systems I’ve worked with produce an answer with no indication of how much to trust it. A fraud rule fires or it doesn’t. A forecast is a number. A match is a match.
Watson’s design says: produce the answer and a calibrated estimate of how likely you are to be right, then route the low-confidence cases to a human. That pattern costs almost nothing to adopt and it changes how a system fails. Instead of being confidently wrong at scale, it hands you a queue.
“A system that says ‘I’m 40% sure’ is worth more than one that’s right slightly more often but never tells you when it’s guessing.” — Sameer Gupta
The other transferable idea is the ensemble. IBM didn’t find the one right algorithm. They ran a hundred mediocre ones and learned how to combine them. That’s a deeply unglamorous approach and it beat every elegant single method anyone had tried.
The Part IBM’s Marketing Won’t Emphasise
This took a large research team several years. The hardware is a room. The corpus was assembled and tuned by specialists for this specific game.
IBM is already talking about medicine as the next application, and I understand why. Diagnosis genuinely does look like evidence gathering plus confidence scoring. But the gap between “answers trivia in a controlled setting” and “supports a clinician with liability attached” is enormous, and I’d be sceptical of any timeline offered in the next few years.
For an ordinary company, the honest position today is that none of this is purchasable. What you can do is steal the ideas: ensemble your methods rather than hunting for the perfect one, and make your systems report how sure they are.
Final Thoughts
I’m still working out how much of this field I actually understand, and I’d rather say that plainly than pretend otherwise. What I’m fairly confident about is that the interesting result here was misreported.
The headline is that a machine beat two humans at a quiz. The result is that a very large ensemble, scored for confidence, beats a small number of clever methods on a hard language problem.
The first one is entertainment. The second is a design principle, and it’s available to you now, on hardware you already own.