Why robots don't need to recite poetry while chopping vegetables
A forum post on zhichai.net argues, in a Feynman-style narrative, that making a 7B-parameter language model narrate every robotic action is a waste of compute — like reciting a novel before catching a falling cup.
The post introduces two 2026 approaches that skip verbose language generation:
- TurboVLA (arXiv:2607.27205, H-EmbodVis/TurboVLA), from the H-EmbodVis team at Huazhong University of Science and Technology
- Latent Bridge, a dual-system VLA inference method
- Latent space: distilling millions of pixel-level details into a few core physical axes (object position, orientation, distance).
- Action chunking: emitting a whole smooth trajectory (e.g. 16–32 future steps) at once, rather than per-timestep commands.
- Bidirectional vision-language interaction: language filters visual features while vision refines language grounding, in milliseconds.
Comparison: traditional VLA vs. TurboVLA
| Dimension | Traditional VLA (e.g. OpenVLA) | TurboVLA | | :--- | :--- | :--- | | Parameters | 7B | 0.2B | | Inference latency | 60–120 ms (5–10 Hz) | 31.2 ms (32 Hz) | | VRAM | 16–32 GB | < 1 GB | | Decision path | \(V \to L \to A\) | \((V+L) \to A\) | | LIBERO success rate | 75–85% | 97.7% |
Method
Instead of autoregressively decoding text and action tokens, TurboVLA fuses visual and language features into a compact task vector and decodes a full chunk of future actions in one forward pass:
Key concepts highlighted in the post:
TurboVLA vs. Latent Bridge
The post frames the two as complementary philosophies:
1. TurboVLA — the radical approach: drops the LLM entirely; 0.2B parameters; each frame is an independent perception with no temporal drift; suits industrial pick-and-place, assembly, and low-cost robots running on edge hardware such as Raspberry Pi or budget GPUs. 2. Latent Bridge — the incremental approach: keeps a 7B–13B model for slow commonsense reasoning, but a lightweight latent bridge predicts small feature deltas \(\Delta z\) in 2–6 ms, bypassing the "30 ms denoising floor" and enabling ~30 Hz real-time output with full commonsense capabilities (e.g. "find the most refreshing fruit").
Takeaway
The author concludes that nature never wastes computation — a cat catching a mouse doesn't consult an encyclopedia — and that TurboVLA and Latent Bridge mark a return to physical common sense in embodied AI: speed (32 Hz) and geometric precision beat verbose language in the physical world.
References
1. *TurboVLA: Real-Time Vision-Language-Action Model at 32 Hz on an RTX 4090 with <1 GB VRAM* — arXiv:2607.27205; H Xie et al., H-EmbodVis, Huazhong University of Science and Technology, July 2026. 2. *Latent Bridge: Feature Delta Prediction for Efficient Dual-System Vision-Language-Action Model Inference*.