Technion Researchers Add Probability to Robot Vision Grounding to Fix a Core Planning Flaw
ANPL's NeuS 2026 Paper Outperforms Deterministic Baselines in Simulated Household Robot Tasks

When a robot built on a vision-language model looks at a cluttered kitchen counter and tries to decide whether the cup is on the shelf, the current mainstream approach forces it to make an irreversible call — yes or no — before it begins to plan. A paper from Technion's Autonomous Navigation and Perception Laboratory, accepted at the 3rd International Conference on Neuro-Symbolic Systems and posted to arXiv today, argues that this forced commitment to a single symbolic interpretation is a structural flaw, not merely an engineering limitation, and that replacing it with a probability distribution over possible symbolic world states allows robot planners to behave significantly more reliably in partially observable environments.
The research introduces what its authors call a third paradigm for connecting visual perception to symbolic robot planning — one that sits between the two dominant existing approaches and explicitly accounts for the uncertainty that vision-language models carry when grounding symbolic facts to images.
Why Both Existing Paradigms Fail Under Real Conditions
To understand what the Technion team is solving, it helps to understand the two paradigms they are departing from.
In the first approach, sometimes called VLM-as-planner, the vision-language model is prompted at every decision step to produce the next action directly from the camera image. The VLM draws on its embedded knowledge of language and visual context to generate plans in natural language or executable code. The strength of this approach is that the model can bring broad common-sense knowledge to bear. Its weakness is that it provides no verifiable plan structure, offers no guarantees about logical consistency, and can hallucinate steps that are visually plausible but procedurally wrong.
In the second approach, called VLM-as-grounder, the VLM serves as a perception engine for a separate classical planner. The model evaluates symbolic predicates — questions like "is the mug upright?" or "is the door open?" — against the current image and answers with a binary truth value. A classical planner such as Fast Downward then uses those grounded symbolic facts to generate an optimal action sequence using a planning domain defined in PDDL, the Planning Domain Definition Language. This is more principled than direct VLM planning, and in well-observed settings it works well. But it has a critical assumption built into its architecture: that the VLM's binary predicate judgments are correct.
The ViPlan benchmark, published in May 2025, quantified how badly that assumption breaks down. In a simulated household robotics environment where the robot had to navigate and manipulate objects under realistic partial observability, VLM-as-grounder approaches achieved only around five percent task success — compared with thirty-four percent for direct VLM planning. When a scene is ambiguous, committing to a wrong symbolic state produces a plan that is internally consistent but factually incorrect, and errors compound through every subsequent step.
Read more: Frontier VLMs control real robots zero-shot through a compact semantic action interface
Treating Perception as a Distribution, Not a Decision
The Technion framework avoids this failure mode by refusing to collapse the VLM's perceptual output into a binary verdict. Instead, each predicate evaluation produces a probability — for instance, a seventy-five percent estimate that the cup is on the shelf, rather than a hard yes. Those per-predicate probabilities define a joint distribution over possible symbolic world states, which is exactly what belief-space planning formulations require as input.
Belief-space planning, formalized through the theory of Partially Observable Markov Decision Processes (POMDPs), represents the robot's knowledge about the world as a probability distribution called a belief state. A belief-space planner selects actions to maximize expected future reward given that distribution — and critically, it can select information-gathering actions when the belief is too uncertain to commit. If the robot is unsure whether the cup is on the shelf, a well-designed belief-space planner may choose to approach the shelf and look again before attempting to grasp, rather than immediately executing a plan premised on a possibly wrong observation.
The ANPL lab has published continuously on POMDP and belief-space planning algorithms since 2012, including work on online planning with optimality guarantees, simplification methods for high-dimensional belief states, and semantic-geometric hybrid belief models. The new paper applies that accumulated infrastructure to a fundamentally different problem: providing the probabilistic perceptual inputs that belief-space planners need, sourced from a modern vision-language model rather than from a geometric sensor model.
How This Compares to Related Concurrent Research
The Technion framework is not the first to recognize that VLM-as-grounder's determinism is its critical weakness. A closely related approach from Northeastern University, MIT, and Princeton — "Seeing is Believing" (arXiv 2504.03245), published in April 2025 — uses a different but structurally similar intuition. That system represents predicate states with three values — known-true, known-false, and unknown — and integrates them into a task and motion planning (TAMP) framework that can generate information-gathering actions when predicates are uncertain. It reports that the approach outperforms both VLM-as-planner and deterministic VLM-as-grounder baselines on real-robot mobile manipulation tasks.
The Technion paper's formalism differs in an important way: rather than using a discrete three-state representation, it treats predicate groundings as a continuous probability distribution, which maps directly onto the POMDP belief state formulation and may allow finer-grained uncertainty reasoning. The NeuS 2026 venue — a conference dedicated specifically to neuro-symbolic systems and published via the Proceedings of Machine Learning Research — is a fitting venue for work that bridges the symbolic and probabilistic, as the planning-under-uncertainty community and the neuro-symbolic AI community have historically had limited overlap.
What the broader pattern shows is that multiple independent research groups have identified the same structural gap in current VLM-for-robotics pipelines within roughly the same twelve-month window. That convergence is itself a signal that deterministic grounding is not merely an engineering choice that can be improved incrementally — it appears to be an architectural mismatch with the messiness of real visual environments.
What the Experiments Show and What They Do Not
The paper reports improved task success rates over deterministic grounding baselines in a simulated household robot environment, particularly in scenarios with partially observable settings and ambiguous visual evidence — exactly the conditions where the ViPlan benchmark had already shown deterministic grounding collapses. These are author-reported results from a peer-reviewed venue, and independent replication has not yet occurred.
The peer-review process at NeuS 2026 provides some quality assurance, but the experiments are confined to simulation. Simulated household environments allow precise control over the degree of partial observability and ambiguity, which makes them well-suited for demonstrating the framework's mechanism. They do not answer whether the approach scales to real sensor noise, compute budgets compatible with onboard robot hardware, or the diverse perceptual variability of actual kitchens and offices.
A further practical concern is calibration. The framework depends on the VLM producing well-calibrated confidence estimates — probabilities that accurately reflect actual uncertainty rather than overconfident scores that collapse back toward binary values. Modern large vision-language models are known to produce poorly calibrated confidence scores in many settings, which could erode the benefit of the probabilistic formulation if the input probabilities are themselves unreliable.
Read more: StateSight benchmark shows frontier VLMs still fail at latent spatial reasoning
The Path From Simulated Benchmarks to Robot Deployment
The importance of this research direction extends beyond its immediate experimental results. The question of how to connect visual perception to symbolic planning has been one of the central unresolved problems in robotics for decades, and vision-language models have only recently reached the capability threshold where they can serve as general-purpose predicate evaluators. The ViPlan benchmark in 2025 was the first rigorous comparison of the dominant architectural paradigms, and it documented their failure modes clearly. The Technion paper and "Seeing is Believing" both represent early-generation solutions to those failure modes, grounded in the probabilistic planning theory that roboticists have spent years developing.
What the field still lacks is a comparable VLM-as-probabilistic-grounder benchmark — a rigorous, reproducible evaluation suite that allows different approaches to be compared under matched conditions. The simulated experiments in this paper and in "Seeing is Believing" use different simulators, different VLMs, and different planner implementations, making direct comparison difficult. If the community converges on a standard evaluation framework, the pace of progress on this problem will likely accelerate.
For engineers building mobile manipulation systems today using foundation-model perception, the immediate practical implication is cautionary: architectures that treat VLM predicate outputs as facts are brittle in any environment where the robot cannot always see what it needs to see. Probabilistic alternatives now exist in the research literature and are producing peer-reviewed results. The gap between those results and production-ready implementation is still substantial, but the theoretical path forward is becoming clearer.