惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

Snorkel AI

Building AI-Native Systems for Federal Infrastructure: A Conversation with Rezaur Rahman Code World Models and AutoHarness for LLM Agents Benchtalks #1: Alex Shaw (Terminal-Bench, Harbor) – Building the Benchmark Factory Building FinQA: An Open RL Environment for Financial Reasoning Agents How Tool Discipline Let a 4B Model Outsmart a 235B Giant on Financial Tasks Coding agents don’t need to be perfect, they need to recover Closing the Evaluation Gap in Agentic AI SlopCodeBench: Measuring Code Erosion as Agents Iterate Introducing the Snorkel Agentic Coding Benchmark 2026: The year of environments Part V: Future Direction and Emerging Trends in Rubric-Based AI Evaluation The self-critique paradox: Why AI verification fails where it’s needed most Chat With the Terminal-Bench Team | Snorkel AI Intelligence per watt: A new metric for AI’s future Terminal-Bench 2.0: Raising the bar for AI agent evaluation Snorkeling in RL environments Introducing SnorkelSpatial: A Benchmark for LLM Spatial Reasoning Scaling Trust: Rubrics in Snorkel's Quality Process Evaluating Multi-Agent Systems in Enterprise Tool Use Evaluating Coding Agents with Terminal-Bench 2.0 Parsing isn’t neutral: why evaluation choices matter The science of rubric design The right tool for the job: An A-Z of rubrics Data quality and rubrics: how to build trust in your models Building the benchmark: inside our agentic insurance underwriting dataset Evaluating AI agents for insurance underwriting LLM observability: key practices, tools, and challenges Anthropic Claude + AWS: revolutionizing pharma data analytics with Snorkel AI Data-centric development of an enterprise AI agent with Snorkel Building the data development platform for specialized AI
Research spotlight: Is intent analysis the key to unlocki...
Shane Johnson · 2025-02-27 · via Snorkel AI

In this week’s community research spotlight, we’re taking a look at the research paper, ARR: Question Answering with Large Language Models via Analyzing, Retrieving, and Reasoning (Yin et al., 2025).

What’s the big idea?

Large language models will answer questions with greater accuracy if they are asked to analyze the intent first, then proceed to retrieve relevant information and perform step-by-step reasoning. Thus, the authors proposed and tested a new zero-show prompting method called ARR – analyze intent, retrieve relevant information and reason step by step.

Is it the greatest thing since sliced bread? I’m not a fan of bread, so no.
Is it a compelling alternative to Chain-of-Thought (CoT)? Perhaps. We’ll see.

ARR concepts

ARR emphasizes a trigger sentence composed of three parts:

  1. Analyze intent – Understand the purpose and desired outcome of the question.
  2. Retrieve Information – Gather the right information needed to answer the question.
  3. Reason Step-by-Step – Apply logical steps to reach the correct conclusion.

In comparison to Chain-of-Though (CoT) prompting, which focuses solely on step-by-step reasoning, the authors believe the addition of explicitly intent analysis will allow for a more nuanced understanding of questions. This is not surprising seeing as LLMs, even when instructed to think step by step, can come to premature conclusions and attempt to justify them – and not understanding the intent may explain why.

ARR experiments

The authors measured the effectiveness of ARR by testing it with 10 standard QA datasets, spanning reading comprehension, commonsense reasoning, world knowledge and multitask understanding. To perform the tests, they used the following prompt template.

Prompt template

Passage: {source}
Question: {question}
Answer: {trigger}

Trigger sentences

Base (blank)
Answer: 

CoT 
Answer: Let’s think step by step

ARR
Answer: Let’s analyze the intent of the question, find relevant information, and answer the question with step-by-step reasoning.

The results revealed consistent improvements over basic and CoT prompting, with the below using Llama 3.1 3B Instruct.

Performance comparison

TypeDatasetBaseCoTARR
RCBoolQ84.1684.6586.33
RCLogiQA35.7938.1039.02
CRCSQA72.9773.7174.94
CRSIQA69.5568.1270.98
WKSciQ85.9093.7094.40
WKOBQA72.2078.2080.00
WKARC82.5984.3184.84
MTBBH50.1958.4059.01
MTMMLU60.6832.0863.51
MTMMLU-Pro38.7540.1042.72

RC – reading comprehension
CR – commonsense reasoning
WK – world knowledge
MT – multitask understanding

Testing

Datasets

BoolQ, LogiQA, CSQA, SIQA, SciQ, OBQA, ARC, BBH, MMLU, MMLU-Pro

Llama models

Llama-3.2-1B-Instruct, Llama-3.2-3B-Instruct and Llama-3.1-8B-Instruct

Other models

Qwen2.5-7B-Instruct, Gemma-7B-IT and Mistral-7B-Instruct-v0.3

ARR consistently outperformed CoT, showcasing particularly noticeable gains in datasets requiring world knowledge (SciQ, OBQA) and multitask understanding (MMLU-Pro). The findings underscore the value of intent analysis in demanding and diverse contexts.

It certainly appears that ARR is better at inducing accurate responses than CoT.

ARR sample question

I particularly liked this example:

A scientist maps a long region in which earthquakes originate and determines this region is a transform plate boundary. Which evidence would cause the scientist to reevaluate this determination?

(A) Volcanism also characterizes the region. (B) Earthquake centers in the region occur at shallow depths. (C) The region shows extensive faulting of sediments. (D) Equal crust densities are found on opposite sides of the region

With CoT

Answer: Let’s think step by step.

Transform plate boundaries are characterized by horizontal motion of the Earth’s crust, which is evidenced by faulting.

Volcanism is characteristic of divergent and convergent plate boundaries, not transform plate boundaries. Therefore, (A) is incorrect.

Earthquakes at transform plate boundaries can occur at any depth, so (B) is incorrect.

(C) is correct because faulting is a characteristic of transform plate boundaries.

(D) is incorrect because transform plate boundaries are characterized by horizontal motion of the Earth’s crust, not by equal crust densities.

With ARR

Answer: Let’s analyze the intent of the question, find relevant information, and answer the question with step-by-step reasoning.

The question asks for evidence that would cause a scientist to reevaluate the determination that a region is a transform plate boundary.

A transform plate boundary is a region where two plates slide past one another horizontally. The evidence that would cause a scientist to reevaluate this determination would be evidence that is characteristic of a different type of plate boundary.

A divergent plate boundary is a region where two plates move apart from one another, and a convergent plate boundary is a region where two plates move toward one another. Volcanism is characteristic of a divergent plate boundary, so (A) is correct.

The LLM came to the wrong conclusion prematurely and attempted to justify it with CoT. However, with ARR, the LLM correctly stated the intent of the question and used it to pursue the correct answer.

ARR component analysis

I found the ablation study particularly interesting as the authors proceeded to measure the impact of each individual component (analyze intent, retrieve information, reason step by step).

First, let’s take a look at the trigger sentences:

ARRAnswer: Let’s analyze the intent of the question, find relevant information, and answer the question with step-by-step reasoning.
AnalyzeAnswer: Let’s analyze the intent of the question, and answer the question.
RetrieveAnswer: Let’s find relevant information, and answer the question.
ReasonAnswer: Let’s answer the question with step-by-step reasoning.

You would think ARR would always result in the highest accuracy, right? Wrong.

DatasetARRAnalyzeRetrieveReason
BoolQ86.3386.0985.3585.87
LogiQA39.0238.4037.7938.86
CSQA74.9475.7675.5974.53
SIQA70.9870.7868.0168.01
SciQ94.4094.3092.8094.50
OBQA80.0086.8081.2082.60
ARC84.8485.8385.3385.03
BBH59.0157.0858.2758.96
MMLU63.5163.6663.7361.77
MMLU-Pro42.7242.5443.0841.11

Final thoughts

While ARR achieves the highest scores 40% of the time, it appears that analyzing the intent is the contributing factor in questions requiring world knowledge, whereas retrieval is the contributing factor in those requiring multitask understanding. My impression is that ARR may be a practical alternative to CoT, but it depends on the task.

As I mentioned earlier, it makes sense. If we don’t ensure LLMs fully understand the intent behind our questions, how can we expect them to answer correctly? Well, “correctly” based on our own perspective and expectations. There’s a lot of research going on regarding reasoning capabilities, but I think it’s worth examining the importance of question context too (e.g., intent).

Check out the research paper. There’s a lot more information, several clear examples, and additional measurements using various models and approaches.

I would definitely add ARR to my prompt engineering toolbox.