heading · body

YouTube

Metacognitive Intelligence in Human-AI Teams

Santa Fe Institute published 2026-05-01 added 2026-05-09 score 8/10
ai cognitive-science metacognition human-ai-collaboration neural-networks confidence-calibration group-decision-making santa-fe-institute
watch on youtube → view transcript

ELI5/TLDR

A cognitive scientist from Illinois argues that the missing piece in AI isn’t more raw intelligence — it’s the ability to think about its own thinking. Humans in groups outperform individuals not because they pool facts but because they trade meta-information (“I’m not sure about this,” “you sound confident, so I’ll go with you”). Today’s chatbots cheerfully answer everything with the same fake certainty. The talk shows simple ways to make a neural network honestly say how sure it is, and proves that humans actually take advice better from an AI that knows when to hesitate.

The Full Story

The setup: a cognitive scientist meets ChatGPT

Aaron Benjamin runs the Human Memory and Cognition Lab at Illinois. Like most cognitive scientists, he learned about neural networks in the 1980s, watched them stall in the 1990s — perceptrons famously couldn’t even learn the identity rule, “give me 1 and I’ll give you 1 back” — and tucked the whole approach in the garage. Then 2022 happened.

If you do not reflect upon the miracle that is this experience, then you are different than I do.

So he and his collaborator Mark Steyvers pivoted. Not to argue about whether LLMs are “really” intelligent — Benjamin thinks that question is degenerate, since we can’t even define human intelligence — but to study these systems the way they study people. Run experiments. Find the limits. Build models.

He gives a quick gift along the way. Goodhart’s Law: the moment you find a way to measure something, it stops being a good measure, because it can be gamed. Pick a benchmark for AI intelligence and someone teaches the test. Reward hospitals for shorter stays and patients get discharged too early and bounce back. Worth pocketing.

What “metacognitive” means in practice

Most criticism of LLMs lands on familiar things — they stop learning after training, they don’t have grounded world knowledge, they’re brittle. Benjamin’s interest is one rung up: an AI that can reflect on what it knows.

A metacognitively competent AI would, in his list:

  • give calibrated confidence (not the bluffing kind)
  • evaluate whether its own explanations are simple and plausible
  • ask for clarification when a question is ambiguous
  • delegate inside a team to whoever is better at the subtask
  • weigh a partner’s advice based on that partner’s track record
  • defer answering until relevant information arrives
  • assess risk — demand more info before high-stakes calls
  • request additional training when it spots its own gaps

In a human, we would just call this intellectual humility.

Why human groups outperform individuals

Before fixing AI, Benjamin wants to understand what humans do. The cognitive science literature has long been fond of the “wisdom of the crowd” — Galton’s county fair where the average guess of an ox’s weight came out near perfect. Error is idiosyncratic, the story goes; truth is shared.

Benjamin doesn’t buy this as the real story.

In one of his experiments, people answered general-knowledge two-choice questions. One group was forced to answer 25 random questions. Another got to pick the 25 they wanted. Plot the answers and the picture is telling — the opt-in group concentrated heavily on easy questions and ignored the hard ones. They knew what they didn’t know.

Now combine those individuals into pretend groups by majority vote. The opt-in crowd still wins, even though their knowledge is highly correlated and many hard questions go unanswered. Self-knowledge — metacognition — is doing real work.

But majority voting isn’t really how groups work. The good stuff happens in the talking.

The 10-second collaboration

In a follow-up experiment, pairs of strangers got 10–15 seconds to discuss each two-choice question. Benjamin compared three setups:

We’re going to take the individuals… and we’re going to simulate using their behavior what simple metacognitive strategies would yield in terms of performance.

  • No info sharing — flip a coin between two people’s answers. Roughly individual performance.
  • Maximum confidence — pick the answer of whichever pretend partner expressed higher confidence. Big jump up.
  • Real interacting pairs — wildly outperforms even the confidence-trading simulation.

Something more sophisticated than confidence-swapping happens in those 10 seconds. People judge each other’s explanations. They piece together partial answers. They calibrate to each other’s vocabulary — when this guy says “pretty sure,” that’s actually about a 70% guess. They build joint explanations on the fly.

The most surprising finding — actual interacting pairs are also the least overconfident. Humans alone are reliably overconfident, especially in domains they think they know. Get them talking for 10 seconds and the bias mostly vanishes. They calibrate not just to each other but to reality.

This is, gently, the answer to the audience member who asked about Dunning-Kruger. Talking to another person doesn’t fix overconfidence by averaging — it fixes it by creating a brief audit.

Teaching a neural network to know what it doesn’t know

Then Benjamin pivots back to AI. Standard chatbots don’t do any of this. A recent medical-AI paper found that across 250 questions and five models, there were exactly two refusals to answer (both by Meta AI). Everything else was confidently delivered, including the wrong answers. The product is built to please, not to pause.

So how do you extract honest confidence from a neural network? He walks through the menu, using two image classifiers as testbeds — a small convolutional network on 10 categories and ResNet-18 on 100.

The default approach uses the output layer. Take the network’s final scores, run them through a softmax to turn them into probabilities, treat the top probability as confidence. Easy. Common. Roughly 90% of confidence work in vision systems looks like this.

There are also distance-based methods — look at where the network represents an object internally and ask how close it is to other things in its category.

What Benjamin is most interested in is consensus or perturbation methods. Submit the same query in slightly different forms, and measure how stable the answer is.

If it says dog every time, it should be highly confident that’s a dog. If it says dog only slightly more than half the time, then it should be less confident.

You can do this two ways. One — add visual noise to the image fifty different ways and check the agreement. Two — Monte Carlo dropout, where you randomly knock out some hidden units in the network during each query. Same idea, applied inside the model instead of outside.

This isn’t an accident from computer science. The same intuition exists in psychology — when you ask yourself a hard question, you mentally ask it a few different ways, and the consistency of your internal answer is what you experience as confidence.

The result — on the simple network, output-layer methods and consensus methods both work fine. On the bigger ResNet, output-layer methods become wildly overconfident. The consensus methods generalize. Robustness to perturbation, it turns out, is a more honest signal than the network’s own logits, especially as architectures get more complex.

Why a humble AI is a better partner

Final experiment. Humans estimate what proportion of a grid is filled in black. After their first guess, an AI partner gives its own estimate and a confidence label. The human can revise.

Benjamin cooks the AI two ways — calibrated (high confidence really does mean more accurate) versus uncalibrated (same average accuracy, but confidence carries no signal). Crucially, average accuracy is identical between the two AIs. The only difference is whether the confidence label is meaningful.

Humans working with the calibrated AI take more advice, reject it less often, and weight it more heavily when integrating. Same accuracy from the partner — the honesty about its own uncertainty is what unlocks better collaboration.

The punchline, delivered by Claude

Benjamin closes by asking Claude to summarize his talk. Claude produces something competent and slightly hollow — “the most important skill isn’t knowing what to ask, it’s knowing what you don’t know.” He then asks how confident Claude is in that summary. Claude immediately deflates — “honestly, moderately confident at best, I should have asked before generating.”

Which is, of course, the whole point. The capacity is in there somewhere. It just doesn’t fire unless invited.

Key Takeaways

  • Goodhart’s Law — once you measure something, it stops being a good measure because it can be gamed. Especially true for AI benchmarks, where teaching to the test produces brittle skills.
  • Metacognition in humans means recognizing the limits of your own current knowledge and having tools to fix those gaps. Same idea applies to AI.
  • Self-selecting which questions to answer is itself a metacognitive skill. Groups built from people who pick their battles outperform groups built from people forced to answer everything.
  • Wisdom-of-the-crowd works because errors are idiosyncratic and truths are shared — but it’s a weak floor, not the real story of group intelligence.
  • Real groups beat any simulation of “majority vote” or “pick the more confident one” because they trade explanations, build joint answers, and calibrate vocabulary to each other.
  • 10–15 seconds of conversation is enough to mostly eliminate individual overconfidence. People calibrate to reality through brief mutual audit, not through averaging.
  • Current LLMs almost never refuse to answer. In one medical evaluation, 250 questions across 5 models produced 2 refusals total.
  • The standard way of extracting AI confidence — softmax over the output layer — fails badly on larger architectures, becoming massively overconfident.
  • Perturbation-based confidence (rerun the query 50 times with noise added, or with random hidden units dropped, and measure answer stability) generalizes better across architectures.
  • This trick mirrors how psychologists think humans generate confidence — internally rephrasing a hard question and checking for consistency.
  • A calibrated AI partner doesn’t need to be more accurate to be more useful. Same average accuracy, plus honest confidence labels, makes humans take its advice more reliably.
  • Garry Kasparov on collaboration — “True collaboration is not about dividing the work between machines and people, but about bringing the strengths of both together.”

Claude’s Take

This is a careful, well-shaped talk. It does the rare thing of arguing for a research direction by walking through three different experiments — humans in groups, neural network confidence extraction, human-AI advice-taking — and showing how the same single idea (metacognition matters) lights up in each one. The 10-second-conversation result eliminating overconfidence is genuinely interesting and underdiscussed. The perturbation-confidence finding is the kind of thing you’d hope to see baked into production AI systems and isn’t.

What it doesn’t do is solve the hard problem. Knowing that LLMs should express calibrated confidence is one thing. Knowing how to bolt that onto a 70-billion-parameter transformer that was trained to be confidently agreeable is another, and Benjamin admits the methods he tested apply more cleanly to vision classifiers than to language models. The product incentive cuts the other way, too — chatbots that hesitate convert worse. So this is a talk about the right direction more than a recipe.

Score: 8. It earns the score by combining a genuine empirical finding (calibrated AI partners get listened to more even at identical accuracy) with a clean conceptual frame (metacognition as the missing capability) and by being honestly bounded — Benjamin says repeatedly that this is research that’s new to him and that some claims are still being worked out. Not a 9 because the AI side is mostly proof-of-concept on small networks and the human-side studies are at the lower bound of group complexity. But a sturdy 8.

The closing trick — getting Claude to confidently summarize and then meekly admit it didn’t know how confident to be — is the kind of dry punchline that lands harder than a chart.

Further Reading

  • Steyvers, M. & Kumar, A. — work on metacognition and human-AI collaboration (Mark Steyvers at UC Irvine, Benjamin’s main collaborator)
  • Helen Toner’s Substack — referenced for arguments that miscalibrated confidence may be a persistent feature of LLMs
  • Galton’s 1907 ox-weight paper — the original wisdom-of-the-crowd demonstration
  • Goodhart’s Law — Charles Goodhart’s original 1975 monetary-policy formulation, still the cleanest version
  • Mitchell, M. and colleagues — recent paper on “wisdom” in AI agents (Melanie Mitchell, the host, was a co-author)
  • Monte Carlo Dropout — Yarin Gal & Zoubin Ghahramani, “Dropout as a Bayesian Approximation” (2016)
  • Kasparov, G. — “Deep Thinking: Where Machine Intelligence Ends and Human Creativity Begins” (2017)