TL;DR
Multimodal AI systems (those combining text, images, and other data) waste computational resources by processing all visual information upfront, even when only some images are relevant to reasoning tasks. Researchers developed Look on Demand, a cognitive scheduling framework that decides which images to examine and when during problem-solving.
✦ Why It Matters
Engineers can reduce inference costs in multimodal systems by selectively processing images only when reasoning requires them.
Key Takeaways
Full Summary
Current multimodal reasoning systems process all available images simultaneously, consuming significant computational resources inefficiently. Look on Demand introduces a scheduling framework inspired by cognitive science principles—specifically, how humans selectively attend to visual information based on task demands.
The framework dynamically decides which images to acquire and examine at each reasoning step, rather than loading everything upfront. This approach treats visual evidence acquisition as a learned scheduling problem, where the system predicts which images will be most informative for the current reasoning task.
Testing on visual question-answering and multimodal reasoning benchmarks showed the framework reduced computational overhead while maintaining or improving answer accuracy. The method enables more efficient deployment of vision-language models in resource-constrained environments.
Related