Better AI Won't Fix a Lying Sensor.

Todd Deshane · May 2026 · 7 min read

This week the loudest physical AI story was Jim Fan at NVIDIA telling a room full of investors that 2026 is the year of world models. His new system, Dream Zero, lets a robot "dream" its way to success inside a learned video model before it ever moves a motor, running reinforcement learning at more than ten frames a second in a simulated dream space. It is genuinely impressive work, and it is aimed squarely at the future: teach the robot to imagine what happens next, and it will act well in the real world.

The quietest physical AI story this week was the one that actually matters if you run a building. It was an essay on The Robot Report by David Chen, who runs products at the depth-camera company Orbbec and holds a Ph.D. in optical measurement. His argument is the unglamorous opposite of dreaming about the future. It is about whether you can trust the present.

The sentence every building owner should read twice

Chen's point is that all the AI in the world rides on top of physical data that has to be correct enough to act on. Then he lists the ways it goes wrong:

If a sensor saturates, loses texture, sees through glass, receives multipath reflections, or drifts out of calibration, the system should recognize reduced confidence rather than silently passing bad geometry downstream.

Read that last clause again. Silently passing bad geometry downstream. That is the failure mode that wrecks real deployments, and it is almost never the model's fault. The model is doing exactly what it was trained to do. The problem is that it was handed a number that looked fine and was completely wrong, and nothing in the chain raised a hand to say so.

Chen's conclusion is the part the humanoid crowd skips past: the most important progress in robotics "may be less glamorous than a new algorithm: perception systems that know when they are uncertain, degrade gracefully, and expose useful confidence information to planning and control." A sensor that knows when it is lying is worth more than a smarter model fed by a sensor that does not.

I learned this the hard way in a basement

We have been running an edge AI system on a sump pump in a Watertown basement since 2024. The first version did the obvious thing. A water-level sensor reported a number, a small model classified each pump cycle as normal or abnormal, and an alert fired when something looked wrong. It worked in the demo. It worked for months.

Then one week the alerts went quiet at exactly the wrong time. The float sensor had drifted. Not failed, drifted. It was still reporting clean, plausible water levels, just shifted from the truth by enough that a rising basement read as a normal one. The model was not broken. It was being fed bad geometry, and it passed that bad geometry downstream without complaint. We got lucky and caught it on a manual check before the floor got wet. The lesson stuck: a four-dollar sensor will lie to you, and a confident lie is more dangerous than an obvious failure.

The redesign is the reason the system is still running today, and it is exactly what Chen is describing. The current model is a residual autoencoder. It does not just classify the cycle. It reconstructs what a normal cycle should look like and measures how far reality has drifted from that reconstruction. That gap, the residual, is a confidence signal. When the float sensor starts drifting, the residual climbs before the classification flips, because the incoming data stops matching anything the model has ever seen as normal. The system does not silently pass the bad reading along. It raises its hand and says: I am no longer sure I can see straight.

The reframe: Most "AI monitoring" pitches sell a smarter model. The durable thing to sell is a perception layer that knows when it is lying. Orbbec is now telling humanoid teams to build exactly that. We built it for a sump pump three years ago because we had no choice.

Forty devices, forty little confidence meters

The same principle is wired into every node of the forty-device building we run in Northampton. Each device runs its own small model against the equipment it watches, and each one carries the same design rule: a reading is only useful if it comes with a sense of how trustworthy it is.

The current clamp on the HVAC compressor knows the normal draw envelope for this temperature and this load, so a reading that lands outside that envelope is flagged as low-confidence rather than treated as gospel. The temperature probe near the boiler knows its own normal cycle frequency, so when it falls off the pipe and starts reading ambient, the cycle pattern collapses and the residual spikes long before anyone notices the room is cold. The water sensor at a known leak joint has learned the difference between condensation and a real drip, and reports its uncertainty when conditions are ambiguous instead of guessing.

None of those are smart in the Dream Zero sense. None of them dream about the future. They do the boring, load-bearing job that Chen says actually decides whether a deployment survives contact with the real world: they degrade gracefully and they tell you when to stop trusting them.

Why this is the small-building advantage, not a limitation

It is tempting to read all this as the small operator being stuck with cheap sensors while the big robotics labs get the good stuff. The opposite is true. A humanoid in a warehouse has to perceive an open, changing, adversarial world, and that is genuinely hard. A sump pump lives in a closet. A boiler sits in the same spot it sat in last year. The physical world a building sensor has to understand is narrow, repetitive, and slow.

That narrowness is exactly what makes a confidence layer cheap to build. You do not need a billion-parameter model to know what normal looks like for one pump in one basement. You need thirty to sixty days of that pump's own data and a model small enough to run on a five-dollar microcontroller. The residual autoencoder on the sump pump fits in thirty-eight kilobytes. The confidence comes almost for free, because the space of normal is so small that any drift away from it is obvious to a model that has memorized it.

The big robotics labs are spending enormous effort to get confidence-aware perception working in the open world. In a building, you get most of that benefit by accepting that the world is small and instrumenting it honestly. That is not the consolation prize. That is the whole edge.

What to actually do with this

If you are putting sensors in a building, whether it is your own or a client's, the practical version of Chen's argument is three rules:

The frontier is teaching robots to dream the future. The job in your building is humbler and more urgent: making sure the present reading is true, and knowing the moment it stops being true. The big robotics teams just put a name to the problem we have been solving in basements for three years.

A monitoring layer that knows when it's lying

Confidence-aware edge AI for buildings too small for a building automation system. Local models, local compute, no per-token billing. $99 to $199 per month, hardware under $3,000.

See how it works

Sources: The Robot Report, "Why robots still struggle to see the real world" by David Chen of Orbbec (2026-05-27); Jim Fan / NVIDIA "Dream Zero" and DreamDojo coverage from AI Ascent (Sequoia Capital, Humanoids Daily, May 2026); field deployments at The Intersecto Watertown sump pump site and Northampton 40-device building.