PPNL: a controlled benchmark showing GPT-4 plans locally well but fails at long-term navigation

October 5, 20237 min

Overview

Decision SnapshotNeeds Validation

The benchmark and experiments show clear, repeatable trends: interactive prompting helps short-horizon planning while fine-tuning helps controlled IID tasks; evidence is strong on synthetic grids but limited for real-world scale-up.

Citations6

Evidence Strength0.75

Confidence0.80

Risk Signals8

Trust Signals

Findings with numeric evidence: 4/4

Findings with evidence refs: 4/4

Results with explicit delta: 5/5

Reproducibility

Status: Code + data available

Open source: Partial

At A Glance

Cost impact: 35%

Production readiness: 40%

Novelty: 60%

Authors

Mohamed Aghzal, Erion Plaku, Ziyu Yao

Links

Abstract / PDF / Code / Data

Why It Matters For Business

LLMs can handle short-range navigation when prompted interactively, but they are not yet reliable for long-distance or out-of-distribution path planning; use fine-tuned models for predictable, repeated environments and ReAct-like prompting for ad-hoc, locally-correct behavior.

Who Should Care

Summary TLDR

The authors introduce PPNL, a synthetic grid-based benchmark to test LLMs' spatial-temporal reasoning via path planning. They test GPT-4 with four prompting styles (naive few-shot, action-and-effect, Chain-of-Thought, ReAct) and fine-tune BART/T5. Best in-context result: GPT-4+ReAct reaches 96.1% success on in-distribution 6×6 grids but shows limited long-horizon planning and low unreachable-goal detection. Fine-tuned T5 reaches ~98% in-distribution but fails to generalize to larger or denser grids. The benchmark and code will be released.

Problem Statement

Do text-only LLMs understand and execute long-horizon spatial plans? The paper builds a controlled grid-world benchmark where models must read a natural-language description of obstacles, start and goal(s), then output an action sequence that reaches the goal(s) while avoiding obstacles and obeying ordering constraints.

Main Contribution

PPNL: a synthetic 2D grid benchmark for spatial-temporal reasoning and path planning.

Systematic evaluation of GPT-4 with four prompting strategies: naive few-shot, action-and-effect, Chain-of-Thought (CoT), and ReAct (interleaved reasoning+acting).

Key Findings

GPT-4 with ReAct achieved very high in-distribution success but often relies on short trials.

NumbersSuccess = 96.1% (Table 3)

Practical UseUse ReAct-style iterative feedback to get strong local planning from GPT-4, but expect failures on tasks needing long uninterrupted plans.

Evidence RefTable 3

Action-and-effect prompting substantially improves naive few-shot performance.

NumbersAction-effect success 75.7% vs naive 54.2% (15-shot): +21.5 pp (Table 3)

Practical UseWhen designing prompts, ask the model to state action outcomes (location updates) to boost immediate obstacle avoidance.

Evidence RefTable 3

Results

MetricValueBaselineDeltaSplit / DatasetEvidenceEvidence Ref
Success Rate (GPT-4, ReAct, in-distribution 6×6)96.1%Naive few-shot (15-shot) 54.2%+41.9 ppIn-distribution unseen-environment test (Table 3)Table 3 shows ReAct success 0.961 vs naive 0.542Table 3
Success Rate (Action-and-Effect vs Naive few-shot)75.7% (Action-effect)54.2% (Naive, 15-shot)+21.5 ppIn-distribution unseen-environment test (Table 3)Table 3 action-effect 0.757 vs naive 0.542Table 3

What To Try In 7 Days

Run ReAct-style iterative prompting when using GPT-4 for short navigation tasks to boost local success.

Fine-tune a small seq2seq model (T5) on your environment if tasks are repeatable and constrained.

Add explicit reachability checks (graph search) before asking an LLM to generate full plans.

Agent Features

Memory
local step-by-step state given via prompts (no persistent external memory)
Planning
ReAct: interleaved perceive-reason-actChain-of-Thought: stepwise internal reasoningAction-and-Effect: explicit state update in prompt
Tool Use
No external runtime tools used by models; A* and TSP used offline for ground truth
Frameworks
ReActChain-of-ThoughtAction-and-Effect prompting
Is Agentic

Yes

Architectures
autoregressive (GPT-4)seq2seq (BART, T5)

Optimization Features

Token Efficiency
ReAct increases token and cost due to multiple trials (higher inference cost)
Training Optimization
Fine-tuning on synthetic PPNL training split

Reproducibility

Code AvailableYes
Data AvailableYes
Open Source StatusPartial
LicenseUnknown

Risks & Boundaries

Limitations

Benchmark uses synthetic 2D grids; real-world complexity and continuous motion are not covered.

GPT-4 few-shot results were evaluated on sampled subsets (cost-limited), not the full test set.

When Not To Use

Do not rely on ReAct prompting for long-distance, single-shot planning where repeated API calls are infeasible.

Avoid using fine-tuned small LLMs when environment sizes or obstacle densities deviate from training data.

Failure Modes

Long-horizon planning failures: ReAct often succeeds locally but fails to produce long uninterrupted optimal plans.

Poor unreachable-goal detection, leading to wasted action sequences.

Core Entities

Models

GPT-4GPT-4VBART-baseBART-largeT5-baseT5-large

Metrics

Success RateOptimal RateAccuracyFeasible RateDistance to Goal(s)

Datasets

PPNL (this paper)

Benchmarks

PPNL

Context Entities

Models

Previous LLM baselines referenced (e.g., GPT variants)

Metrics

Standard path-planning metrics (used as comparison)

Datasets

ALFREDTextWorldReaSCAN

Benchmarks

Prior grounded reasoning benchmarks compared in Table 1