Papers
Topics
Authors
Recent
Search
2000 character limit reached

WorldTest Protocol Overview

Updated 1 April 2026
  • WorldTest is a protocol that defines a two-phase approach, separating unscored exploration from a task-specific scored test phase to evaluate world-model learning.
  • Its methodology leverages behavior-based scoring across challenges like masked-frame prediction, planning, and change detection in grid world settings.
  • The framework enables direct comparison between human and machine agents, highlighting differences in strategic exploration and hypothesis-driven resets.

WorldTest is a two-phase, black-box evaluation framework for world-model learning that distinctly separates reward-free exploration from a scored test phase comprising one or more derived tasks in a modified but related environment. Its design is representation-agnostic, interactive, and open-ended, supporting rigorous, behavior-based comparison of arbitrary model-learning agents, including humans, classical algorithms, and neural models. WorldTest’s strict separation between unscored exploration and subsequent task evaluation directly measures the agent’s internalization of environment dynamics, beyond reward maximization or next-frame prediction benchmarks (Warrier et al., 22 Oct 2025).

1. Formal Specification and Protocol Structure

WorldTest operates over a reward-free partially observable Markov decision process (POMDP) M=S,A,O,T,Ω\mathcal{M} = \langle S, A, O, T, \Omega \rangle, with SS as state space, AA as action set, OO as the observation space, TT as transition function, and Ω\Omega as the observation kernel. The challenge space is defined by a parameter set Ξ\Xi sampled from distribution PΞP_\Xi, and a family of transformation functions τ:(M,ξ)(M,R,H)\tau : (\mathcal{M}, \xi) \mapsto (\mathcal{M}', R, H), where M\mathcal{M}' is a derived POMDP, SS0 is a trajectory-based objective, and SS1 is the evaluation horizon.

Each WorldTest run consists of:

  1. Task Type Disclosure: The agent learns the task family (e.g., masked-frame prediction, planning, or change detection) but not the specific challenge instance.
  2. Interaction Phase: The agent freely interacts with SS2 for an unlimited number of steps, choosing SS3 at each time step, and may reset to the environment’s initial state at will. Rewards are absent in this phase, enforcing a goal-free setting. The agent may end exploration with a special “go-to-test” action.
  3. Test Instantiation: The protocol samples SS4 and generates the challenge SS5.
  4. Policy Generation: The agent, based on its learned internal model SS6 and knowledge of SS7, returns a policy SS8 for the test phase.
  5. Test Execution: The agent executes SS9 in AA0 for AA1 steps, collecting a trajectory AA2.
  6. Scoring: The agent’s performance is computed as AA3 (Warrier et al., 22 Oct 2025).

2. Evaluation Objectives and Scoring Methodologies

WorldTest implements task-specific, behavior-based scoring functions to capture model generalization across masked-frame prediction (MFP), planning (PL), and change detection (CD):

  • Masked-Frame Prediction: The agent must choose the correct filling among AA4 options for masked cells after following a fixed action sequence; binary score: AA5.
  • Planning: The goal is to reach a specified subgrid pattern AA6 in AA7 steps; binary score: AA8.
  • Change Detection: The agent must detect the time AA9 at which an environment event changes. The score depends on the reported OO0 and is a piecewise function: OO1 if OO2, OO3 if OO4, and a smoothly decaying penalty OO5 otherwise, where

OO6

Agent performance is aggregated as OO7 across OO8 i.i.d. tasks per family or globally. To measure exploration focus, normalized perplexity (NP) and its AUC are computed over the action distribution in a sliding window, with

OO9

Low final NP and AUC indicate convergent, targeted exploration versus random or unfocused behavior (Warrier et al., 22 Oct 2025).

3. AutumnBench: Instantiation in 2D Grid Worlds

AutumnBench operationalizes WorldTest in a suite of 43 grid world environments (3–25 cells per side, diverse object and color sets, 19 stochastic), expressed in the Autumn DSL. Each environment supports all three challenge families—MFP, PL, CD—yielding 129 tasks. Tasks are constructed by:

  • MFP: Masking cells in the terminal observation after a fixed action sequence; agent selects among 6 candidates.
  • PL: Specified subgrid and color-arrangement goal, to be achieved within a fixed horizon.
  • CD: Environment logic altered by a hidden switch at an unknown time TT0; agent claims "Found change" and selects TT1 (Warrier et al., 22 Oct 2025).
Environment Attribute Range/Statistic Notes
Grid size TT2 to TT3 Majority TT4
Object types TT5–TT6 per environment
Colors TT7–TT8 per environment
Stochastic dynamics TT9 out of Ω\Omega0 environments
Code lines per env Ω\Omega1–Ω\Omega2

4. Empirical Performance and Behavioral Analysis

The protocol enables systematic benchmarking across human and algorithmic learners. In (Warrier et al., 22 Oct 2025), agents include an aggregate “80th-percentile” human (N=517) and frontier reasoning models (Claude 4 Sonnet, Gemini 2.5 Pro, OpenAI o3):

  • Human performance: Ω\Omega3–Ω\Omega4 average across all challenge types.
  • Frontier models: Ω\Omega5–Ω\Omega6 (change detection lowest, masked-frame highest).
  • Scaling trends: Model scaling only improves MFP/PL in Ω\Omega7 of environments, and only Ω\Omega8 of CD tasks.
  • Environment stochasticity: Humans are unaffected by stochasticity; models perform up to Ω\Omega9 better on stochastic cases.

Exploration behavior distinctly differs between agents:

  • Action mix: Humans: Ξ\Xi0 clicks, Ξ\Xi1 directional, Ξ\Xi2 resets, Ξ\Xi3 no-ops; models: Ξ\Xi4 clicks/arrows, Ξ\Xi57% resets/no-ops.
  • Reset frequency: Humans median Ξ\Xi6 per env; models Ξ\Xi71.
  • Exploration focus: Human NP AUC Ξ\Xi8, final NP Ξ\Xi9 vs. models PΞP_\Xi0 for both.

Model errors reveal deficiencies in hypothesis testing, belief revision, and targeted resets. In MFP, models often persist with the first consistent rule ignoring new evidence, and rarely employ hypothesis-driven resets (Warrier et al., 22 Oct 2025).

5. Theoretical Motivations and Limitations

WorldTest addresses critical deficiencies of reward-oriented or next-frame prediction evaluations by enforcing reward-free, open-ended learning in the interaction phase. Its design supports representation-agnostic benchmarking and exposes the extent to which learned models can generalize to new challenges. AutumnBench, with its rich grid-world suite, makes these desiderata practical and human-interpretable (Warrier et al., 22 Oct 2025).

Notably, current text-reasoning models lack strategic exploration, robust uncertainty quantification, and dynamic belief updating. The protocol highlights significant headroom between state-of-the-art machine agents and human learners, especially concerning hypothesis-driven resets and adaptive exploration.

However, AutumnBench is limited to symbolic 2D domains. Extensions to continuous control (e.g., physics engines, robotics), multi-agent interaction, and domains with more complex observation and action spaces remain open research problems.

6. Open Problems and Pathways for Extension

Future research directions highlighted in (Warrier et al., 22 Oct 2025) include:

  • Adaptation of WorldTest beyond 2D grids, encompassing continuous and real-world problem settings.
  • Synthesis of more diverse PΞP_\Xi1 functions, including analogy, tool reuse, and multi-step counterfactuals.
  • Integration of active learning signals or hybrid reward protocols in the interaction environment.
  • Agent architectures driven by intrinsic motivation, hypothesis-driven resets, and full Bayesian belief updating.

A plausible implication is that enhancing agents with these features is essential to bridging the gap to human-like world-model learning and generalization. WorldTest provides a rigorous template for such evaluation and methodological innovation in world-model research (Warrier et al., 22 Oct 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to WorldTest Protocol.