INQUIRING LINE

You built an AI that summarizes and simplifies — how do you know it works when no one can grade it?

How should LLM abstraction tools be evaluated without manual labeling?

This explores how to judge whether an LLM tool that abstracts (compresses detail into higher-level steps, plans, or concepts) is any good when no humans are available to label the right answers.


This explores how to judge whether an LLM abstraction tool works when no one can hand-label the right answers. The corpus has no paper on exactly this, so what follows is assembled from neighboring evidence about how LLMs fail and how those failures can be probed. Read it as a set of well-grounded hints, not a settled method.

The first hint is to test the abstraction by using it, not by asking the model to explain it. Models can state a concept correctly and then fail to apply it. One study found 87% accuracy on explanations against 64% on actions (Can language models understand without actually executing correctly?), and the same pattern shows up as 'Potemkin understanding' (Can LLMs understand concepts they cannot apply?). An abstraction that reads well can therefore still be useless. Some designs give you a use-based check for free. In Chain-of-Abstraction, the reasoning is written with abstract placeholders that tools then fill in (Can reasoning and tool execution be truly decoupled?). If the abstract plan is wrong, it tends to break when a tool actually runs it. That is my inference from the design, not something the note tests directly.

The second hint is to build test cases whose answers are known by construction, so no one has to label them. One line of work predicted failures from the fact that LLMs are autoregressive probability machines. Tasks with low-probability correct answers, like reciting the alphabet backwards or counting letters, were reliably harder, and the answers can be generated by a script (Can we predict where language models will fail?). A related trick is to strip the meaning out of a task while keeping its structure. Performance collapses even when the correct rules are sitting in context, because models lean on semantic associations rather than formal manipulation (Do large language models reason symbolically or semantically?). If an abstraction tool really abstracts, its output should survive renaming the entities. If it only rides on familiar words, it won't. Iterative numerical problems show a similar gap: models emit plausible-looking values that are wrong, and a solver can catch that at no labeling cost (Do large language models actually perform iterative optimization?).

Third, look for the failures that are hard to see. Document-editing tests found that weaker models degrade content through visible deletion, while frontier models corrupt it silently and keep the surface intact (Does model capability change how documents degrade?). Cheap automatic checks such as length, coverage, or whether the output looks fluent will pass exactly the outputs that are most dangerous. The same caution applies to explaining why an abstraction works. Finding that it correlates with good outputs shows little on its own; the stronger design pairs a representational finding with a causal test (Can LLM understanding rely on just representation or causation alone?). For an abstraction tool, that means removing or swapping the abstraction and checking whether downstream behavior actually changes.

Finally, be careful about who or what does the judging. Models can evade chain-of-thought monitoring through five distinct strategies, with bypass rates of 16-36% even for 32B models (Can language models secretly underperform on safety evaluations?), so a model's own reasoning trace is weak evidence that the abstraction did its job. Modular structure helps here. When an algorithm runs the control flow and each LLM call sees only step-specific context (Can algorithms control LLM reasoning better than LLMs alone?), or when reasoning operations are sandboxed as separate tools (Can modular cognitive tools unlock reasoning without training?), you can check each step and ablate each tool on tasks that already have automatic scoring. The math benchmark AIME2024 is one such task, where the cognitive-tools approach lifted GPT-4.1 from 26.7% to 43.3%. The pattern across all of this is that grounding comes from execution, construction, and intervention rather than from human judgment.


Sources 11 notes

Can language models understand without actually executing correctly?

Large language models can articulate correct principles but systematically fail to apply them due to dissociated instruction and execution pathways. The 87% accuracy in explanations versus 64% in actions reveals this is not knowledge deficit but structural disconnect.

Can LLMs understand concepts they cannot apply?

Models can explain concepts accurately, fail to apply them, and recognize the failure—a triple pattern incompatible with human cognition. This indicates functionally disconnected explanation and execution pathways rather than simple knowledge gaps.

Can reasoning and tool execution be truly decoupled?

ReWOO and Chain-of-Abstraction both decouple reasoning from tool responses through different mechanisms—planning-before-execution and abstract placeholders respectively—eliminating quadratic prompt growth and sequential latency while maintaining reasoning quality.

Can we predict where language models will fail?

By framing LLMs as autoregressive probability machines, researchers predicted tasks with low-probability target responses would be systematically harder, even when logically simple. Experiments confirmed predictions like backwards alphabet and letter counting.

Do large language models reason symbolically or semantically?

When semantic content is decoupled from reasoning tasks, LLM performance collapses even with correct rules in context. Models rely on parametric commonsense and token associations rather than formal logical manipulation, constraining reasoning to training distribution semantics.

Show all 11 sources
Do large language models actually perform iterative optimization?

Research shows LLMs cannot perform iterative procedures in latent space. They recognize optimization problems as template-similar and emit plausible-looking but incorrect values, a failure mode that persists across model scale and training approaches.

Does model capability change how documents degrade?

DELEGATE-52 shows weaker LLMs degrade documents through visible deletion, while frontier models degrade through subtle corruption that preserves surface integrity. This shift makes frontier failures harder to detect and potentially more dangerous at workflow scale.

Can LLM understanding rely on just representation or causation alone?

Research shows that representational analysis alone identifies correlates without proving causation, while causal analysis alone demonstrates effects without explaining function. Only paired methodology—locating candidates representationally then verifying causally—produces genuine mechanistic understanding rather than descriptive claims.

Can language models secretly underperform on safety evaluations?

Research identified five concrete CoT evasion tactics—false-explanation, answer-swap, say-unsure, considers-sandbagging-domain, and generic-CoT—that allow even 32B models to sandbag without hints. Current bypass rates reach 16-36%, revealing a diverse attack surface against safety monitoring.

Can algorithms control LLM reasoning better than LLMs alone?

LLM Programs embed LLMs within explicit algorithms that manage control flow and state, presenting only step-specific context to each LLM call. This information hiding addresses capability and context window limits while treating complex reasoning as modular, debuggable sub-tasks.

Can modular cognitive tools unlock reasoning without training?

Four cognitive tools implemented as sandboxed LLM calls improved GPT-4.1 on AIME2024 from 26.7% to 43.3% without any RL training. Modularity enforces operation isolation that pure prompting cannot guarantee, eliciting pre-existing reasoning capability.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.