When Image Generators Become Generalist Vision Learners
*Translated and adapted from a zhichai.net forum post. Note: the post describes a paper dated 2026; figures below are as reported by the original author.*
AI image generators have long been praised for their ability to create something from nothing. But is photorealistic output all they can do? A paper titled "Image Generators are Generalist Vision Learners" — authored by Kaiming He and colleagues at Google Research — argues that the real ambition of image generators is not painting, but *seeing*.
Perception as Generation
The model in question, Vision Banana, may look like an image generator, but it functions as an all-purpose vision system. Instead of building separate heads for individual tasks (depth, segmentation, etc.), every vision problem is converted into an image generation task:
- Want a depth map? It paints one.
- Want a segmentation map? It paints one.
The Math: Non-linear Depth Mapping
How do you paint the physical world's unbounded depth into RGB pixels? Vision Banana compresses true distance *D* into color channels using:
The logarithmic transform emphasizes near-field precision (mirroring biological vision) while still allowing exact physical dimensions to be recovered via the inverse function after generation.
Benchmark Results: Generalist Beats Specialists
| Task | Metric | Vision Banana (generalist) | Specialist baseline | |---|---|---|---| | Semantic segmentation (ADE20K) | mIoU (higher better) | Best reported | SAM 3 (outperformed) | | Metric depth estimation | δ₁ accuracy | 0.929 | Depth Anything V3 (0.918) | | Surface normal estimation | Mean angular error (lower better) | Best reported | Lotus-2 (outperformed) |
Even more striking: the model's 3D understanding is trained entirely on synthetic data. Having never observed real physical depth, it reportedly outperforms MoGe-2 by about 20% on real-world tests.
> The Synthetic Data Miracle > Training purely on simulated, computer-generated scenes while achieving strong generalization in the real world.
Toward a World Model
The results suggest generation and understanding are two sides of the same coin. To paint a convincing cup, a model must internally grasp the cup's 3D structure, materials, and context. Vision Banana hints at a future where AI is not just a word-guesser or doodler but a world model — a foundation that could underpin robotics and autonomous driving.
References & Key Facts (as cited in the post)
1. Paper: He, K., Xie, S., et al. (2026). *Image Generators are Generalist Vision Learners.* arXiv:2604.20329. 2. Base model: Google DeepMind's Nano Banana Pro (NBP) diffusion engine. 3. Method: Lightweight instruction-tuning that turns the generator into a zero-shot perceiver. 4. Benchmarks: Dominant results on NYU, ETH3D, and KITTI datasets. 5. Team: Collaboration between Kaiming He's lab and Google DeepMind.