Evergreen
How to Evaluate an AI Research Paper Before Acting on It
A practical method for checking the question, task, model configuration, scoring, uncertainty, replication, and product relevance of an AI paper.
In this article
How to Read an AI Reasoning Paper Critically
To read an AI reasoning paper critically, start with the exact claim you may act on and trace it backward through the paper's question, unit of analysis, task, model configuration, measurement, uncertainty, and replication. Do not begin with the title, the company that published it, or the loudest response.
The goal is not to find a reason to dismiss the paper. The goal is to learn what its evidence supports, what it does not support, and what you would need to test before changing a product or strategy.
Write down the repeated claim
Research travels through compression. A paper describes an experiment. A press summary turns it into a conclusion. A post turns the conclusion into a slogan. A product team then treats the slogan as a decision.
Reverse that path.
If the repeated claim is "reasoning models collapse on complex problems," write it down. Then find the closest sentence in the paper. Ask whether the paper says all models, named models, one model family, one benchmark, or one configuration.
In The Illusion of Thinking, the evidence concerns named models solving four puzzle families under controlled conditions. "Several tested models approached zero accuracy on higher-complexity puzzle configurations" is close to the result. "AI cannot think" is not.
Identify the unit being tested
An AI paper may test model weights, a hosted model with a system prompt, a retrieval pipeline, a tool-using agent, a human-AI team, or a deployed product. Those are different units.
flowchart LR
A["Headline claim"] --> B["Paper's exact question"]
B --> C["Evaluated unit"]
C --> D["Task and configuration"]
D --> E["Metric and uncertainty"]
E --> F["Supported decision"]
A model-only result can matter to a product. It does not automatically become a product failure rate. The bridge between the two is a mapping from the tested behavior to the real workflow, followed by an end-to-end evaluation.
Reconstruct the experimental question
A useful one-sentence reconstruction names the population, intervention or configuration, comparison, outcome, and setting.
For the Apple paper, a reasonable reconstruction is:
How do selected reasoning and non-reasoning model variants perform, under matched inference-compute conditions, on simulator-graded planning puzzles as compositional complexity increases?
That question is more informative than the title. It exposes what must appear in the method and what cannot be inferred.
Check whether the task represents the claimed ability
This is construct validity. Does the test actually measure what the interpretation says it measures?
Tower of Hanoi can measure exact sequential execution, rule following, and state tracking. Asking for a fully enumerated move list also measures the ability to produce a long, perfectly formatted output. Generating a recursive function measures something else. Using a tool that executes the function measures a third thing.
River Crossing illustrates a more basic issue. Some configurations in the original study were mathematically unsolvable under the fixed boat capacity. An impossible instance cannot measure a model's ability to find a valid solution. It can measure whether the model recognizes impossibility, but only if the prompt and grader allow that answer.
Before accepting the result, inspect the task generator, solvability, input distribution, contamination risk, representativeness, and success rule.
Record the complete configuration
Model names are not enough. At minimum, record the exact version and date, reasoning mode, sampling settings, prompt, examples, context and output limits, tools, retrieval, memory, retry policy, number of samples, response filtering, grader, and failure treatment.
The same model can produce a different result when the prompt, tool set, output representation, or stopping rule changes. A response paper that changes several fields has tested a new configuration. That can reveal sensitivity without directly reproducing the original.
| Configuration field | Question to answer |
|---|---|
| Model | Which exact version ran, and when? |
| Instructions | What did the system and user prompts require? |
| Tools and context | What information or actions were available? |
| Sampling | How were temperature, budget, and retries set? |
| Sample | How many runs or cases were included and excluded? |
| Grading | What counted as success, partial success, or invalid output? |
| Environment | Could the task be solved as specified? |
If these fields are missing, the result may still be interesting. Its portability is harder to judge.
Separate observation, explanation, and implication
An observation belongs to the data. An explanation is a proposed cause. An implication is a decision drawn from the cause.
"The model's accuracy fell to zero in this range" is an observation. "The model hit a fundamental reasoning limit" is an explanation. "This product should not use reasoning models" is an implication.
The distance between those statements is where overclaiming happens. Alternative explanations may include task invalidity, accumulated execution error, output constraints, prompt sensitivity, state-tracking failure, training familiarity, or grader behavior. The paper should provide evidence that distinguishes them.
Do not demand that one paper eliminate every alternative. Do demand that its strongest language match the alternatives it actually tested.
Inspect baselines and ablations
A baseline shows what happens under a meaningful comparison. An ablation changes one part of the setup to learn what caused the result.
The Apple paper compares thinking and non-thinking model pairs and later adds temperature-zero experiments. Responses change representation, tool access, interaction, or puzzle validity. Those follow-ups are useful because they probe different causal explanations.
The cleanest ablation changes one field at a time. If a response changes the model, prompt, tools, interaction loop, and grader together, improved performance shows that a different system did better. It does not identify which change caused the improvement.
Read the numbers, not only the curve
Look for sample size, uncertainty intervals, variance across runs, filtering, missing data, multiple comparisons, and whether the metric fits the consequence.
A pass/fail metric is appropriate when one invalid move makes the output unusable. It can conceal whether failures happen on the first step or after hundreds of correct steps. Both views can matter. Product teams may need task completion, severe-error rate, recovery rate, time, cost, and human-review burden.
NIST's AI Risk Management Framework Core calls for documented test sets, metrics, tools, uncertainty, deployment-like conditions, limitations, and production monitoring. That is a useful standard even when the paper itself is not a product evaluation.
Treat responses as new evidence
A response paper is not a vote against the original. Read its method with the same skepticism.
Lawsen's comment identifies real concerns about output representation and River Crossing solvability. It also describes some alternative Tower of Hanoi tests as preliminary and not highly powered.
Rethinking the Illusion of Thinking provides a more nuanced replication. It reports remaining Tower of Hanoi failures alongside sharply different River Crossing results. That is stronger evidence for a mixed conclusion than either "the paper was disproved" or "nothing changed."
Version history matters too. The current Apple paper answers criticisms that version 1 did not address. Always compare the response date and target version with the version you are reading.
Map the result to the decision
The final question is not whether you liked the paper. It is what decision the evidence can support.
If your product asks one model to emit long exact action sequences without tools, the Tower of Hanoi failure pattern may be directly relevant. If your product generates code, verifies every action, checkpoints state, and requires approval before execution, the component risk still matters, but you need a system test.
Use the paper to design representative cases. Preserve the external result. Run the affected configuration. Test the deployed system. Measure consequence. Change claims and controls when the evidence requires it.
A compact claim-to-evidence record
The finished record should fit on one page before it expands into a full review.
| Field | Completed statement |
|---|---|
| Repeated claim | What people are saying |
| Paper claim | The closest supported wording |
| Version | Exact artifact and date |
| Unit | Model, system, human-AI team, or product |
| Task | What the subject actually did |
| Configuration | Model, prompt, tools, budget, sampling, and grader |
| Result | Observation with sample and uncertainty |
| Interpretation | Authors' explanation |
| Alternatives | Plausible explanations not ruled out |
| Replication | What later work repeated or changed |
| Product relevance | Direct, adjacent, weak, or unknown |
| Decision | Test, change, monitor, restrict, or no action |
Critical reading ends with a bounded action, not a rhetorical winner. [[How Product Teams Should Respond to an Unfavorable AI Evaluation]] continues from that point.
This guide was freshly written from E072, the current Apple paper and responses, and primary evaluation guidance reviewed on July 28, 2026. AI assistance was used for research organization, drafting, and validation. Publication remains unauthorized.
Sources
Follow the evidence.
- machinelearning.apple.com: illusion of thinkingmachinelearning.apple.com
- NIST AI RMF Measure guidanceairc.nist.gov
- youtu.be: 2unoT550UWAyoutu.be
- arxiv.org: 2507arxiv.org
- openai.com: a practical guide to building ai agentsopenai.com
- arxiv.org: 2506arxiv.org
- anthropic.com: demystifying evals for ai agentsanthropic.com
- arxiv.org: 2506arxiv.org
- open.spotify.com: 23EBn3y6n59SKM2C6T2lDsopen.spotify.com
- arxiv.org: 2506arxiv.org
- arxiv.org: 2506arxiv.org
- daltonanderson.ghost.io: apples ai strategy the flawed illusion of thinkingdaltonanderson.ghost.io
- anthropic.com: building effective agentsanthropic.com