Teahose.
SIGN IN
NEW HERE — WHAT TEAHOSE DOES
We read the entire AI & tech firehose — so you don't have to.
PODPodcastsAll-In, No Priors, Acquired…
NEWNewslettersStratechery, Newcomer…
PAPPapersPhysical AI research
PHProduct Huntdaily launches
VCInvestor ScoutSequoia, a16z, Benchmark…
CLAUDE DISTILLS →
7 reads, 30 sec each — free, 6 AM ET.
+ a live graph of the companies, people & themes underneath.
HOME/ARXIV PHYSICAL AI RESEARCH/LENS: LLM-guided Environment Sim…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

LENS: LLM-guided Environment Simplification for Planning and Control in Clutter

DATE July 22, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS AILEEN LIAO, MICHAEL POSA, ET AL. (ARXIV PHYSICAL AI)ARXIV 2607.19633
// SUMMARY

1. Key Themes

VLM as a Universal Scene Preprocessor, Not an Action Generator

LENS uses a vision-language model (GPT-4o) not to generate actions or plans, but to simplify the scene before any planner or controller runs. It performs two operations: pruning (removing task-irrelevant objects) and merging (grouping functionally coupled objects into single composite bodies). The paper demonstrates this works as a front-end across three fundamentally different paradigms — Task and Motion Planning (TAMP), contact-implicit model predictive control (C3+), and the π0.5 vision-language-action model. As stated in Section 1: "The core innovation lies in leveraging modern VLMs to shift the burden of scene abstraction from hand-crafted heuristics to an automated, task-agnostic semantic reasoning loop — bridging the gap between algorithms that function in structured laboratory settings and the unbounded complexity of the real world."

Closed-Loop Abstraction Recovery via Failure Feedback

A critical design choice is that LENS does not rely on a single zero-shot VLM query. When a downstream planner or controller fails (timeout, infeasible plan, error code), the failure is fed back to the VLM with the previous abstraction, and the VLM re-queries for a revised scene reduction. Section 3 describes: "feedback is triggered by time-outs or error codes (eg. workspace limits, runtime errors) in downstream systems. Then, a framework-specific feedback prompt along with the previous 𝒪̃ is appended to the existing prompt and current scene, and LENS re-queries the VLM for a revised scene reduction." On hardware, the paper shows cumulative success rates reaching 80% across three feedback iterations, with successes distributed across all three iterations rather than concentrated in the first (Figure 6, Section 5.2).

Clutter Scaling: Orders-of-Magnitude Runtime Improvement

The most striking quantitative result is in model-based control. The baseline C3+ controller's runtime explodes as objects are added: at 6 objects it exceeds LENS by an order of magnitude (~1000 seconds), and at 7 objects it reaches over 4000 seconds. LENS-C3+ maintains stable performance at ~40–135 seconds across all tested clutter levels (2–10 objects). Section 5.2 states: "This indicates that the effective problem size is determined by task relevance rather than raw scene complexity." Success rates also favor LENS: 39/45 trials vs. 17/30 for baseline.

VLA Performance Recovery in Clutter

For the π0.5 VLA model, clutter drops success rates from 0.85 to 0.50 on Spatial LIBERO tasks. LENS recovers performance to 0.69 by inpainting irrelevant objects out of the image before passing it to the policy (Section 5.3, Table 1). On real hardware, the baseline VLA achieves 0.0 success on three of four fruit-picking tasks in clutter, while LENS achieves 0.3–0.7 across the same tasks (Table 1). The paper notes: "task-focused scene abstraction is an effective, lightweight mechanism for improving VLA performance in visually cluttered spaces" (Section 5.3).

Task-Agnostic Design With No Fine-Tuning

LENS requires no task-specific engineering, no model fine-tuning, and no data collection. It uses off-the-shelf GPT-4o with prompt engineering. The VLM query time averages 1.76 seconds (Section 5), negligible relative to execution time. The same framework generalizes across symbolic planning, continuous optimization, and learned policies — three paradigms that normally share almost no infrastructure.


2. Contrarian Perspectives

End-to-End VLAs Are Not Sufficient for Cluttered Real-World Deployment

The prevailing industry narrative — championed by companies like Physical Intelligence, Figure, and others — is that scaling VLA models with more data and parameters will solve manipulation. LENS presents evidence that even a state-of-the-art VLA (π0.5) degrades catastrophically in clutter: "clutter significantly degrades VLA performance, with success dropping from 0.85 to 0.5" (Section 5.3). The paper argues that VLAs "lack explicit mechanisms for enforcing physical constraints, reasoning long-horizon, or guaranteeing task feasibility" and that "irrelevant objects, occlusions, and novel contact configurations introduce distribution shifts that corrupt affordance predictions and produce physically implausible actions" (Section 4.3). The implication: a perception-level abstraction layer may be more cost-effective than scaling model parameters for real-world robustness.

Classical Planning and Model-Based Control Are Still Relevant — If You Fix the Scene Abstraction Problem

Much of the robotics investment community has moved on from classical TAMP and model-based control toward learning-based methods, viewing the former as too brittle for real-world deployment. LENS argues the problem was never the planners themselves but the lack of scalable scene abstraction feeding into them. Section 1 states: "Without a flexible mechanism to suppress task-irrelevant objects before planning or control begins, the combinatorial and distributional burdens imposed by clutter are inherited in full by every downstream method, making the gap between lab and real-world not merely a matter of scale but of fundamental tractability." With LENS as a front-end, TAMP achieves higher success rates in heavy clutter and C3+ maintains stable runtime — suggesting classical methods remain viable if you solve the abstraction problem.

Geometric Proximity Heuristics Are Insufficient — Semantic Reasoning Matters

A common engineering approach to scene reduction is distance-based pruning (e.g., "only consider objects within X meters of the goal"). The paper explicitly tests this and finds it inadequate. Appendix C shows LENS outperforms radius-based and nearest-N baselines for C3+ control. Appendix B provides a concrete TAMP example where "a distance-based baseline fails" because it misses a critical blocking object further away that "must be removed to enable a successful approach to the target." The paper concludes: "geometric proximity is a reasonable heuristic, but task success may require more distant objects for multi-step planning" (Appendix C). This challenges the assumption that simple spatial heuristics can substitute for semantic task understanding.


3. Companies Identified

Physical Intelligence (π0.5)

  • Description: Developer of large-scale vision-language-action models for robotic manipulation.
  • Why relevant: π0.5 is the VLA model used in LENS experiments. LENS demonstrates that even Physical Intelligence's state-of-the-art VLA degrades severely in clutter and can be rescued by a lightweight preprocessing layer — implying VLAs alone may not be sufficient for real deployment.
  • Quote: "the π0.5 large-scale Vision-Language-Action (VLA) model" (Section 1, contributions list); "clutter significantly degrades VLA performance, with success dropping from 0.85 to 0.5" (Section 5.3).

OpenAI (GPT-4o)

  • Description: AI company providing the multimodal LLM used as LENS's reasoning engine.
  • Why relevant: GPT-4o is the VLM that powers all scene abstraction decisions in LENS. The entire framework depends on a general-purpose VLM's ability to reason about task relevance — no fine-tuning required. This demonstrates that commodity foundation models can serve as perception front-ends for robotics.
  • Quote: "the VLM (in our implementation, GPT-4o) is prompted to output information to construct a structured scene abstraction 𝒪̃" (Section 3).

GroundingDINO (open-vocabulary object detection)

  • Description: Open-set object detection model used in LENS's hardware VLA pipeline.
  • Why relevant: Used on hardware to segment objects for inpainting before passing images to the VLA. The paper notes it "perform[s] unreliably in simulated scenes due to domain mismatch" (Appendix D), which has implications for sim-to-real transfer pipelines.
  • Quote: "open-vocabulary detectors such as GroundingDINO perform unreliably in simulated scenes due to domain mismatch, leading to degraded masking quality unrelated to the abstraction mechanism itself" (Appendix D).

Segment Anything (SAM, by Meta)

  • Description: Foundation model for image segmentation.
  • Why relevant: Part of the hardware perception pipeline for VLA experiments, used alongside GroundingDINO and LaMa for object detection, segmentation, and inpainting.
  • Quote: "Foundation models [20, 13, 29] are used to segment and inpaint scenes" (Section 5.3, Figure 8 caption).

4. People Identified

Michael Posa

  • Lab/Institution: University of Pennsylvania (GRASP Lab)
  • Why notable: One of the leading researchers in contact-implicit trajectory optimization and hybrid dynamics for robotics. His work on C3+ (Consensus Complementarity Control) is one of the three downstream stacks LENS integrates with. Posa's group focuses on the intersection of planning, control, and contact-rich manipulation — directly relevant to real-world deployment challenges.
  • Quote: Co-author; C3+ controller is referenced as "[2, 5]" in the contributions (Section 1).

Dinesh Jayaraman

  • Lab/Institution: University of Pennsylvania
  • Why notable: Known for representation learning for robotics, visuomotor policies, and task-oriented scene understanding. His prior work on "Task-oriented hierarchical object decomposition for visuomotor control" (cited as [25]) is directly related to LENS's merging concept. Brings the learning-based perspective to complement Posa's control-theoretic background.
  • Quote: Co-author; referenced work on hierarchical object decomposition cited in Section 2.

Rachel Holladay

  • Lab/Institution: University of Pennsylvania
  • Why notable: Background in Task and Motion Planning (TAMP), co-author on PDDLStream-related work. Brings expertise in the symbolic planning paradigm that LENS integrates with.
  • Quote: Co-author; TAMP integration discussed in Section 4.1.

Aileen Liao

  • Lab/Institution: University of Pennsylvania
  • Why notable: Lead author of the paper. The LENS framework appears to be her primary contribution to the field.
  • Quote: Lead author; framework described throughout the paper.

5. Operating Insights

LENS Is a Cheap, Deployable Preprocessing Layer — Not a Replacement for Your Stack

The VLM query costs ~1.76 seconds and uses commodity GPT-4o with no fine-tuning. For a CTO evaluating whether to adopt this, the key insight is that LENS is explicitly designed as a "plug-and-play fix" (Abstract) that sits in front of existing planning/control stacks. You do not need to retrain your VLA, rewrite your TAMP domain, or redesign your MPC. The paper demonstrates integration with PDDLStream (TAMP), C3+ (contact-implicit MPC), and π0.5 (VLA) — three systems with radically different interfaces. The implementation details in Section 4 and Appendix A show that the abstraction formatting varies per downstream system but the core VLM pipeline is unchanged. For a company already deploying a manipulation stack, this means the engineering effort to integrate LENS is primarily in writing the prompt and the scene-description adapter — not in retraining models or rebuilding infrastructure.

For VLA Deployments, Image Inpainting Is a Practical Clutter Mitigation Technique Today

The VLA integration is particularly actionable. LENS identifies task-relevant objects via VLM, then uses GroundingDINO + SAM + LaMa to inpaint (remove) irrelevant objects from the camera image before passing it to the VLA policy (Section 4.3, Appendix D, Figure 8). This is a pipeline that any robotics company with a VLA deployment can implement with off-the-shelf models. The hardware results (Table 1) show this approach lifts a VLA from 0% to 30-70% success on individual tasks in clutter. The caveat: the paper notes that on hardware, "open-vocabulary detectors such as GroundingDINO perform unreliably in simulated scenes due to domain mismatch" (Appendix D), so the perception pipeline quality will be a bottleneck in production.


6. Overlooked Insights

LENS Does Not Learn Across Runs — Each Task Starts Fresh

The paper acknowledges in Section 6: "LENS does not learn from experience across runs." This is both a limitation and a strategic observation. Every deployment starts with a zero-shot VLM query, meaning there is no accumulation of task-specific knowledge over time. For a company deploying robots in a fixed environment (e.g., a warehouse or home), this means the VLM will repeatedly reason about the same scenes from scratch. The paper suggests future work could extend to "RL, finetuning" for richer abstraction operations — implying that a company that builds a feedback loop to fine-tune the VLM on its own deployment data could create a durable data moat around scene abstraction quality.

The Feedback Mechanism Is Deliberately System-Agnostic, Which Limits Diagnostic Granularity

LENS's failure feedback relies on "high-level failure signals rather than explicit causes" (Section 6, Limitations). The feedback prompts are generic: "The last run failed. You chose [previous representation]. Choose a larger set of objects from the scene that is not just goal objects" (Appendix A.1) or "Your previous answer was not solvable. You selected [past object selection]" (Appendix A.2). This design choice makes LENS portable across any downstream system, but it means the VLM gets very little diagnostic information about why the plan failed. A more informative feedback channel (e.g., "object X was in collision during trajectory segment Y") could significantly improve convergence speed and reduce the number of re-query iterations needed — an opportunity for companies building more tightly integrated versions of this approach.