<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>World Model Reasoning Benchmark on RockB</title><link>https://baeseokjae.github.io/tags/world-model-reasoning-benchmark/</link><description>Recent content in World Model Reasoning Benchmark on RockB</description><image><title>RockB</title><url>https://baeseokjae.github.io/images/og-default.png</url><link>https://baeseokjae.github.io/images/og-default.png</link></image><generator>Hugo</generator><language>en-us</language><lastBuildDate>Thu, 27 Aug 2026 10:01:36 +0000</lastBuildDate><atom:link href="https://baeseokjae.github.io/tags/world-model-reasoning-benchmark/index.xml" rel="self" type="application/rss+xml"/><item><title>HarnessEval-W: Agentifying the Evaluation of Visual Worlds — A HarnessEval Agent Evaluation Guide</title><link>https://baeseokjae.github.io/posts/harnesseval-w-visual-agent-eval-2026/</link><pubDate>Thu, 27 Aug 2026 10:01:36 +0000</pubDate><guid>https://baeseokjae.github.io/posts/harnesseval-w-visual-agent-eval-2026/</guid><description>HarnessEval-W agentifies world-model evaluation: an agentic pipeline that decomposes each case into sub-questions, spawns specialized sub-agents, and returns auditable evidence trees instead of opaque scalar scores.</description><content:encoded><![CDATA[<p>HarnessEval-W is an agentified evaluation benchmark that brings the &ldquo;harness&rdquo; paradigm from the LLM ecosystem to world-model benchmarking. Instead of computing a fixed rubric over generated rollouts, it interprets each evaluation case, decomposes the question into measurable sub-questions, and spawns specialized sub-agents with tailored context and diagnostic tools. A parent agent then validates the gathered evidence and aggregates it into a final verdict, producing a transparent evidence tree with a complete reasoning chain for every single rollout.</p>
<h2 id="what-is-harnesseval-w-agentifying-the-evaluation-of-visual-worlds">What Is HarnessEval-W? Agentifying the Evaluation of Visual Worlds</h2>
<p>HarnessEval-W is an open-source, agentic evaluation pipeline for visual world models — the generative systems that predict how a scene evolves over time. It was released by the MirroS Lab and is described in the paper &ldquo;HarnessEval-W: Agentifying the Evaluation of Visual Worlds&rdquo; (arXiv 2608.16859), with a project page at mirros-lab.github.io/HarnessEval-W and a live Python repository on GitHub.</p>
<p>The core idea is a deliberate shift in what a benchmark is supposed to be. Traditional world-model benchmarks treat evaluation as a mechanical scoring exercise: generate a rollout, compute a metric, emit a number. HarnessEval-W treats evaluation as an agentic reasoning task. Each evaluation case is read in context, broken into measurable sub-questions, and handed to specialized sub-agents that gather evidence using diagnostic tools. A parent agent validates that evidence and reasons to a final verdict. The result is not just a score — it is an inspectable chain of reasoning that explains why the score is what it is.</p>
<p>The benchmark has been applied to 18 representative world models across 330 evaluation cases, producing 5,940 scored rollouts and exercising 11 specialized evaluation skills. It is designed as a living, extensible system: the skill library grows as world models evolve, and new evaluation cases can be added without rewriting the pipeline.</p>
<h2 id="why-scalar-scores-arent-enough-the-trust-problem-in-world-model-benchmarks">Why Scalar Scores Aren&rsquo;t Enough: The Trust Problem in World-Model Benchmarks</h2>
<p>The central thesis of HarnessEval-W is that a benchmark should deliver more than a scalar score — the reasoning that justifies the score is what makes evaluation trustworthy. This matters acutely for world models, where judging a rollout requires understanding whether physics, causality, and world state evolve correctly. A video can look plausible frame by frame while violating the laws of physics, or a scene can change in ways that break causal consistency. These are not errors a simple metric can catch.</p>
<p>Existing benchmarks do not automate this judgment. Metrics are computed brute-force — pixel differences, frame-level similarity, or hand-crafted heuristics — and they leave no reasoning chain that can be examined or verified. If a model scores 0.72 on a benchmark, nobody can tell you why. There is no record of which transitions were judged correct, which were flagged as physically implausible, or what evidence led to each call. The score is persuasive only in the sense that it is a number; it cannot be explained, audited, or trusted in a deep way.</p>
<p>This is the &ldquo;persuasive-power problem.&rdquo; A benchmark score is only as useful as the trust it commands. When a score cannot be decomposed into verifiable judgments, it becomes a black box — and black-box scores are weak evidence for deciding which world model to deploy, which research direction to fund, or which failure mode to fix next. HarnessEval-W is built to close that gap by making every verdict auditable end to end.</p>
<h2 id="the-harness-paradigm-from-llm-ecosystem-to-world-model-benchmarking">The Harness Paradigm: From LLM Ecosystem to World-Model Benchmarking</h2>
<p>The term &ldquo;harness&rdquo; comes from the LLM ecosystem, where harness engineering refers to the disciplined practice of building evaluation pipelines that are reproducible, controllable, and interpretable. In LLM evaluation, a harness typically defines how prompts are constructed, how model outputs are collected, how judgments are made, and how results are aggregated — all in a way that can be inspected and rerun.</p>
<p>HarnessEval-W imports this philosophy into world-model benchmarking. Rather than a static rubric applied uniformly to every case, it builds an evaluation harness that is itself an agentic workflow. The harness interprets each case&rsquo;s context, decides what needs to be measured, and orchestrates the agents that do the measuring. This is a fundamental change in architecture: evaluation stops being a fixed function and becomes a dynamic, reasoning-driven process.</p>
<p>The shift has practical consequences. Because the harness reasons about each case, it can adapt to the specific failure modes a world model exhibits. Because it records its reasoning, results are reproducible and explainable. And because it is built as an extensible system, new evaluation dimensions can be added as the field matures — the same way LLM harnesses grew to cover reasoning, safety, and tool use.</p>
<h2 id="how-harnesseval-w-works-the-agentified-evaluation-pipeline">How HarnessEval-W Works: The Agentified Evaluation Pipeline</h2>
<p>The HarnessEval-W pipeline is a multi-stage agentic workflow. At a high level, it works like this:</p>
<ol>
<li>
<p><strong>Case interpretation.</strong> The parent agent reads each evaluation case in context. It does not assume a fixed rubric; it figures out what the case is actually asking and what would constitute a correct or incorrect outcome.</p>
</li>
<li>
<p><strong>Decomposition.</strong> The evaluation question is broken into measurable sub-questions. For a physical transition, for example, the harness might ask whether object trajectories are physically plausible, whether collisions resolve correctly, and whether the scene state is consistent before and after the transition.</p>
</li>
<li>
<p><strong>Sub-agent spawning.</strong> Specialized sub-agents are spawned for each sub-question, each given tailored context and diagnostic tools. These agents gather evidence — inspecting frames, tracking objects, checking consistency — rather than relying on a single global metric.</p>
</li>
<li>
<p><strong>Evidence validation.</strong> The parent agent validates the evidence the sub-agents collected, checking that it is coherent and sufficient before relying on it.</p>
</li>
<li>
<p><strong>Aggregation and verdict.</strong> The validated evidence is aggregated into a final verdict, with the full reasoning chain preserved.</p>
</li>
</ol>
<p>The result is a transparent evidence tree. Every evaluation becomes a structured record: the original question, the sub-questions it decomposed into, the evidence each sub-agent gathered, and the reasoning that led to the final verdict. This is the &ldquo;Sherlock Holmes&rdquo; framing the authors use — a benchmark agent that spawns specialized sub-agents to discover hidden clues, connect evidence, and reason to a definitive deduction.</p>
<h2 id="the-three-evaluation-axes-observation-quality-transition-correctness-world-persistence">The Three Evaluation Axes: Observation Quality, Transition Correctness, World Persistence</h2>
<p>HarnessEval-W organizes its evaluation around three axes, each with multiple settings:</p>
<table>
  <thead>
      <tr>
          <th>Axis</th>
          <th>Settings</th>
          <th>What It Measures</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td>Observation Quality</td>
          <td>2 settings</td>
          <td>How well the model renders a single observation — visual fidelity, detail, and coherence of a static frame</td>
      </tr>
      <tr>
          <td>Transition Correctness</td>
          <td>3 settings</td>
          <td>Whether the model&rsquo;s transitions between states are physically and causally correct — including intentional and physical transitions</td>
      </tr>
      <tr>
          <td>World Persistence</td>
          <td>3 settings</td>
          <td>Whether the world state persists correctly across time — object permanence, drift, and consistency when objects leave and re-enter the frame</td>
      </tr>
  </tbody>
</table>
<p>The case breakdown reflects this structure. Across the 330 evaluation cases, there are 108 exploratory cases, 51 intentional cases, and 66 physical cases, plus 34 drift, 34 revisit, and 37 offscreen cases. These categories map onto the axes: exploratory and intentional cases probe how the model handles deliberate actions and scene changes, physical cases test causal and physical correctness, and the drift, revisit, and offscreen cases stress world persistence.</p>
<p>This structure matters because it targets the specific failure modes that make world models hard to evaluate. A model can be excellent at rendering a single frame while failing catastrophically at physical transitions. A model can maintain a scene perfectly when everything stays in view but lose track of objects that leave the frame. By separating these axes, HarnessEval-W produces diagnoses that are actionable — you can see exactly which dimension a model fails on, not just that its overall score is low.</p>
<h2 id="transparent-evidence-trees-making-every-verdict-auditable">Transparent Evidence Trees: Making Every Verdict Auditable</h2>
<p>The most distinctive feature of HarnessEval-W is the transparent evidence tree. Every one of the 5,940 scored rollouts comes with a complete reasoning trace, from planner routing through validation. This is not a byproduct of the pipeline — it is the point.</p>
<p>An evidence tree records the full chain of reasoning for a verdict. It shows the original evaluation question, the sub-questions the harness decomposed it into, the evidence each sub-agent gathered, and the logical steps that connect that evidence to the final judgment. Anyone can walk through the tree, check the evidence, and verify that the verdict is sound. If a model is judged to have failed a physical transition, the tree shows exactly which frames were examined, what inconsistency was found, and why that inconsistency was judged to be a failure.</p>
<p>This makes evaluation auditable end to end. Scores are no longer opaque; they are backed by inspectable reasoning. For researchers, this means a benchmark result can be interrogated rather than taken on faith. For practitioners, it means a model&rsquo;s failure modes can be understood and addressed. For the field as a whole, it means benchmark results carry real evidentiary weight — the reasoning that justifies a score is available for scrutiny.</p>
<h2 id="results-human-alignment-and-robustness">Results: Human Alignment and Robustness</h2>
<p>The headline results of HarnessEval-W concern how well its judgments align with human preferences and how consistent they are across repeated runs.</p>
<p>On human alignment, HarnessEval-W reports a Spearman correlation of rho = 0.93 with human Bradley-Terry ranking on the Intentional Transition setting. This is a strong signal that the agentified judgments track what human evaluators actually prefer, on one of the hardest settings in the benchmark.</p>
<p>On the Physical transitions setting, HarnessEval-W reports 71.7% pairwise accuracy against human choices — a dramatic improvement over the 31.9% achieved by the closest WBench protocol. In other words, when a human and the benchmark are both asked to pick the better of two physical transitions, HarnessEval-W agrees with the human more than twice as often as the existing brute-force protocol.</p>
<p>On robustness, HarnessEval-W reports a 4.9x narrower repeat-evaluation envelope than WBench across three independent runs. This means its scores are far more stable when the evaluation is repeated — a critical property for a benchmark, since a benchmark that gives wildly different scores on reruns cannot be trusted to measure anything reliably.</p>
<table>
  <thead>
      <tr>
          <th>Metric</th>
          <th>HarnessEval-W</th>
          <th>Closest WBench Protocol</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td>Pairwise accuracy vs. human (Physical transitions)</td>
          <td>71.7%</td>
          <td>31.9%</td>
      </tr>
      <tr>
          <td>Spearman correlation with human ranking (Intentional Transition)</td>
          <td>rho = 0.93</td>
          <td>—</td>
      </tr>
      <tr>
          <td>Repeat-evaluation envelope (3 runs)</td>
          <td>4.9x narrower</td>
          <td>baseline</td>
      </tr>
  </tbody>
</table>
<p>These results together make the case that agentified evaluation is not just more explainable — it is also more accurate and more stable than the brute-force status quo.</p>
<h2 id="harnesseval-w-vs-the-field-wbench-worldarena-worldfoundry">HarnessEval-W vs. the Field: WBench, WorldArena, WorldFoundry</h2>
<p>HarnessEval-W sits in a broader landscape of world-model evaluation tools. Understanding the differences helps clarify what is genuinely new.</p>
<p><strong>WBench</strong> (meituan-longcat/WBench) is a comprehensive multi-turn benchmark for interactive video world model evaluation. It is the closest existing protocol HarnessEval-W compares against, and it represents the brute-force metric status quo that HarnessEval-W aims to replace. The comparison is stark: HarnessEval-W&rsquo;s 71.7% pairwise accuracy on Physical transitions versus WBench&rsquo;s 31.9%, and a 4.9x narrower repeat-evaluation envelope.</p>
<p><strong>WorldArena</strong> (tsinghua-fib-lab/WorldArena) is a unified benchmark for evaluating the perception and functional utility of embodied world models. It focuses on embodied world models — perception and functional utility — which is a related but distinct axis from HarnessEval-W&rsquo;s physical-causality focus. Both are part of the broader world-model evaluation landscape, but they measure different things.</p>
<p><strong>WorldFoundry</strong> (OpenEnvision/WorldFoundry) is a unified world model inference and evaluation infrastructure. It is infrastructure-focused, providing unified inference and evaluation tooling rather than a specific agentic scoring methodology. It represents the &ldquo;evaluation infrastructure&rdquo; approach, whereas HarnessEval-W represents the &ldquo;agentified reasoning&rdquo; approach.</p>
<table>
  <thead>
      <tr>
          <th>Benchmark</th>
          <th>Focus</th>
          <th>Approach</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td>HarnessEval-W</td>
          <td>Physical causality, transitions, persistence</td>
          <td>Agentified reasoning with evidence trees</td>
      </tr>
      <tr>
          <td>WBench</td>
          <td>Interactive multi-turn video evaluation</td>
          <td>Brute-force metrics</td>
      </tr>
      <tr>
          <td>WorldArena</td>
          <td>Embodied world models, perception, functional utility</td>
          <td>Unified benchmark</td>
      </tr>
      <tr>
          <td>WorldFoundry</td>
          <td>Inference and evaluation infrastructure</td>
          <td>Unified tooling</td>
      </tr>
  </tbody>
</table>
<p>The key differentiator for HarnessEval-W is the agentified, evidence-backed scoring methodology. Where the others provide metrics or infrastructure, HarnessEval-W provides a reasoning process that produces auditable verdicts.</p>
<h2 id="a-living-benchmark-extending-skills-and-evaluation-cases">A Living Benchmark: Extending Skills and Evaluation Cases</h2>
<p>HarnessEval-W is designed as a living benchmark. It is open-sourced as an executable agentic system in Python, and its skill library is extensible. The current release includes 11 specialized evaluation skills spanning quality, transitions, and persistence — but the architecture is built so that new skills can be added as world models evolve.</p>
<p>This matters because world models are a fast-moving field. New architectures introduce new capabilities and new failure modes. A static benchmark, frozen at the time of its release, quickly becomes stale. A living benchmark with an extensible skill library can track the field, adding evaluation dimensions as they become relevant.</p>
<p>The extensibility also lowers the barrier to contribution. Because the pipeline is agentic and skill-based, adding a new evaluation dimension is a matter of defining a new skill rather than rearchitecting the whole benchmark. This makes HarnessEval-W a platform the community can build on, not just a fixed test.</p>
<h2 id="what-this-means-for-the-future-of-world-model-evaluation">What This Means for the Future of World-Model Evaluation</h2>
<p>HarnessEval-W points toward a future where world-model evaluation is reasoning-driven rather than metric-driven. The implications are significant.</p>
<p>First, it changes what a benchmark result means. A score backed by an evidence tree is a much stronger claim than a bare number. It can be audited, interrogated, and trusted. This raises the bar for the whole field: benchmarks that cannot explain their scores will increasingly look like black boxes.</p>
<p>Second, it makes evaluation more actionable. Because HarnessEval-W produces fine-grained diagnoses of every rollout, it tells you not just that a model is weak, but where and why. This is exactly the information needed to guide research and development.</p>
<p>Third, it demonstrates that agentic evaluation can be both more accurate and more stable than brute-force metrics. The human-alignment and robustness results are not just nice-to-haves; they are evidence that the agentified approach is a genuine improvement, not a gimmick.</p>
<p>For anyone working with visual world models — whether building them, evaluating them, or deciding which to use — HarnessEval-W represents a new standard for what evaluation should look like: transparent, auditable, human-aligned, and built to grow with the field.</p>
<h2 id="frequently-asked-questions">Frequently Asked Questions</h2>
<p><strong>What is HarnessEval-W?</strong>
HarnessEval-W is an open-source, agentified evaluation benchmark for visual world models. It brings the &ldquo;harness&rdquo; paradigm from the LLM ecosystem to world-model benchmarking, decomposing each evaluation case into sub-questions, spawning specialized sub-agents to gather evidence, and producing transparent evidence trees instead of opaque scalar scores.</p>
<p><strong>How does HarnessEval-W differ from traditional world-model benchmarks?</strong>
Traditional benchmarks compute metrics brute-force over generated rollouts and emit a scalar score with no reasoning chain. HarnessEval-W instead interprets each case in context, decomposes it into measurable sub-questions, and reasons to a verdict through an agentic pipeline, producing an auditable evidence tree for every rollout.</p>
<p><strong>What does HarnessEval-W evaluate?</strong>
It evaluates three axes: Observation Quality (2 settings), Transition Correctness (3 settings), and World Persistence (3 settings). Across 330 evaluation cases, it covers exploratory, intentional, and physical transitions, plus drift, revisit, and offscreen scenarios that stress world persistence.</p>
<p><strong>How well does HarnessEval-W align with human judgment?</strong>
It reports a Spearman correlation of rho = 0.93 with human Bradley-Terry ranking on Intentional Transition, and 71.7% pairwise accuracy against human choices on Physical transitions — up from 31.9% for the closest WBench protocol. It also shows a 4.9x narrower repeat-evaluation envelope than WBench.</p>
<p><strong>Is HarnessEval-W open source and extensible?</strong>
Yes. It is open-sourced as an executable agentic system in Python, with a project page at mirros-lab.github.io/HarnessEval-W and a GitHub repository. It includes 11 specialized evaluation skills and is designed as a living benchmark with an extensible skill library that grows as world models evolve.</p>
]]></content:encoded></item></channel></rss>