출처: arXiv · cs.CV원문 보기 ↗
원문 저작권은 출처에 있습니다. 이 사이트는 수집, 번역 또는 형식 정리만 합니다.
사실 흐름
arXiv:2608.11292v1 Announce Type: new Abstract: Multimodal models increasingly reach for tools when solving visual tasks (crop, zoom, rotate, brighten), a paradigm known as thinking-with-images. The central challenge is
해설과 영향
从同期发布的计算机视觉论文来看,多模态与视觉推理正呈现多样化探索趋势。例如 GeoUniPR 关注跨模态地点识别中视觉与 LiDAR 数据的一致性建模,SegPAR 则研究语义分割场景下的稀疏决策型黑盒攻击。这些工作与本文虽属不同子方向,但共同反映出视觉模型在真实场景中面临的可靠性、跨模态对齐与推理鲁棒性问题,为理解“以图思考”范式的必要性提供了背景参照。
在工具调用与推理优化的语境下,多模态模型需要平衡视觉操作序列的灵活性与计算开销。本文提出的“自演化”思路,从标题推断可能涉及让模型在推理过程中动态生成或调整与图像操作相关的代码,从而减少对固定工具集的依赖。不过,由于摘要未展开技术路线,这一推断仅基于标题表述,具体实现方式需以论文全文为准。
值得注意的是,同日发布的 Is Convergence Inevitable? 从语言模型输出同质化的角度切入,讨论模型能力收敛的源头;CLEAR 则针对长尾分类中的类别可靠性差异提出专家聚合方案。这些工作虽与本文主题不同,但都涉及模型在复杂条件下的自适应与优化,侧面说明“自演化”类方法在当前研究中的关注度正在上升。
참고 자료
- arXiv · cs.CV ↗
- GeoUniPR: A Geometry-Consistent Unified Framework for Cross-Modal Place Recognition ↗
- SegPAR: Class-Centric Decision-Based Sparse Attack for Semantic Segmentation ↗
- Is Convergence Inevitable? Tracing Output Homogeneity Back to Base Models ↗
- CLEAR: Class-wise Expert Aggregation with Structured Sampling for Long-Tailed Classification ↗
출처 원문
arXiv:2608.11292v1 Announce Type: new Abstract: Multimodal models increasingly reach for tools when solving visual tasks (crop, zoom, rotate, brighten), a paradigm known as thinking-with-images. The central challenge is one of perception: tools mostly serve to expose visual evidence, reasoning over that evidence stays in language, and most targets are ones a human could in principle determine by inspection. Some visual questions, however, are not bottlenecked by perception: recovering their answers requires executing a multi-step visual algorithm over the pixels. On such questions a model often names the correct algorithm at once yet still answers wrong, because language can describe an algorithm without being able to run one. Code-with-Image crosses that line: given nothing but a Python interpreter, the model must implement a genuine visual algorithm in code to solve the task; the program itself becomes the reasoning. The bottleneck then shifts from executing code to deciding which algorithm to implement. So we let the model teach itself: a training-free reflection loop studies its own failed programs, tests repairs against constructive ground truth, and keeps what survives as portable skills. On our Code-with-Image Bench (CwI-Bench), thirty task families induced by hidden visual computations with disjoint learning and evaluation splits, even GPT-5.6-luna stays below 30% with tool-free chain of thought; given a bare interpreter it reaches 43%, and with skills evolved through its own executable reflection, 67%. The open 27B model climbs the same ladder (9% 33% 56%), and the skills are plain text, transferable across scales and families. When code carries the reasoning, debugging code becomes debugging reasoning.