觉
AI觉醒星球
Awakening is here
Knowledge File / AI技能杠杆
2026-05-24 3 浏览 免费阅读

趋势解读:ByteDance study finds that asking LMMs questions beats,评估 LLM Agent 表现

字节跳动与港科大联合研究发现,使用问答对训练多模态模型能显著提升长文档理解能力,而字符识别任务反而损害性能。基于此训练的MMProLong模型在预算有限的情况下超越了多个大型开源模型。

SOURCE / AI技能杠杆 MIN / 9 ACCESS / 免费阅读 POST / 2026-05-24 21:28:45

原贴

查看原文
作者:Jonathan Kemper 来源站点:the-decoder.com 原贴时间:

原文

Multimodal AI models are supposed to handle ever-longer documents, but how they're trained to do so usually stays a trade secret. A new study shows that character recognition as a training task actually hurts performance and that question-answer pairs work far better. Researchers from ByteDance Seed and the Hong Kong University of Science and Technology (HKUST) studied how image-language models can be trained efficiently on long documents. The result is a model called MMProLong, built on Alibaba's open Qwen2.5-VL , that beats much larger competitors. Modern multimodal AI models need to handle increasingly long inputs: entire PDF collections of rendered pages, hours of video, or agents that remember their tasks across many steps. AI labs like OpenAI, Google, and Alibaba tout context windows of up to 1 million tokens, capable of holding not just text but thousands of page images or video frames. But according to the authors, technical reports barely reveal what data a model should see and in what mix. At first glance, the study's central finding seems obvious. For a multimodal model to learn to find the right spot in a 100-page document, having it transcribe the text of every page barely helps. It's more effective to ask questions whose answers are buried somewhere in those pages. The researchers tested both approaches head-to-head. In one setup, the model had to perform text recognition either across all pages of a document or for a few selected pages, while the remaining pages stayed in context as distractions. In the other setup, the researchers used a separate model ( Seed 2.0 from ByteDance ) to generate question-answer pairs for individual sections of a document. The question then went into training alongside the entire document, forcing the model to locate the relevant passage within a long context. Pure text recognition as a training task actually worsened performance compared to the starting point. Question-answer training, on the other hand, brought clear gains. The model only learns to navigate long texts when it has to filter out and categorize information with a specific goal. Three more findings turned up in the experiments. Feeding the model mainly very long documents at the top end of the context window isn't worth it. A broader mix of shorter and longer examples works more reliably. Long-context ability isn't a skill tied to a specific length but requires flexible searching across different distances. The real bottleneck also turns out to be finding the relevant passage, not reasoning about it. A mix weighted toward extraction tasks with a smaller share of calculation tasks delivered the best results. The third finding is surprising because it contradicts common practice with text-only language models. Adding short training examples doesn't appear strictly necessary. The model largely kept its short-task abilities even when trained only on long question-answer data. The format of the data itself probably helps: even when the context is very long, the task is still framed as a question-answer interaction in the familiar instruction-following format. With this recipe and a fairly modest training budget, MMProLong beats several much larger open models like InternVL3-38B and Gemma3-27B . The model was trained on only 128,000 tokens but stays stable at 256,000 and even 512,000 token input lengths, while the original model falls apart sharply at those ranges. This ability also transfers to tasks the model was never specifically trained on, like understanding long videos. In an extra transfer experiment, the recipe proved effective on the stronger Qwen3-VL-8B too, even though that model is already built for long contexts.

中文翻译

多模态AI模型本应处理越来越长的文档,但如何训练它们这样做通常仍是商业机密。一项新研究表明,字符识别作为训练任务实际上损害了性能,而问答对的效果要好得多。

核心信息

字节跳动与港科大联合研究发现,使用问答对训练多模态模型能显著提升长文档理解能力,而字符识别任务反而损害性能。基于此训练的MMProLong模型在预算有限的情况下超越了多个大型开源模型。

  • 字符识别训练损害多模态模型长文本性能
  • 问答对训练显著提升长文档理解能力
  • 长短混合训练并非必要,长问答数据即可保持短任务能力
  • 信息提取任务比推理计算更关键
  • 低成本训练(12.8万tokens)超越大模型

详细解读

这是什么信号:字节跳动Seed团队与港科大的研究揭示了一个反直觉的发现:在训练多模态长文档理解模型时,使用字符识别任务会拉低性能,而基于问答对的训练方法能带来显著提升。这意味着当前主流模型训练中“认字”优先的思路可能需要重新审视。

为什么重要:随着多模态模型需要处理长篇PDF、视频和智能体记忆,长上下文能力成为关键竞争点。然而各AI实验室对训练数据的配方秘而不宣。该研究开源了MMProLong模型(基于Qwen2.5-VL),仅用12.8万tokens的训练预算就打败了InternVL3-38B和Gemma3-27B等更大模型,为行业提供了一个低成本、高回报的训练范式。

对谁有价值:AI研究者可直接复用其方法优化长文档理解模型;企业AI团队可减少训练成本并提升产品体验(如文档问答、视频分析);大模型开发者为避免“训练数据偏差”提供了新视角。

可以怎么行动:在构建多模态训练数据时,优先使用自动生成的问答对替代OCR/文本识别任务;混合长短示例(但短示例并非必需);将训练重心放在信息提取而非推理计算上。具体可参考论文中的实验设置。

风险或限制:该发现基于Qwen2.5-VL架构,在其他基座模型上的泛化性需验证;问答对质量依赖生成模型(如Seed 2.0),低质量问答可能引入噪声;长期上下文稳定性在512k tokens以上未测试。

信息差价值

信息差价值:多数研究关注模型架构或数据规模,而该研究首次公开了训练数据配方——问答对优于字符识别。这一被忽略的细节可为团队节省大量试错成本,尤其是预算有限的创业公司。

业务启发:文档AI产品(如合同审查、论文解析)应优先采用问答对微调而非OCR流水线;视频理解场景可直接迁移该方法,因为模型能力无需专门训练即可泛化。同时,该思路暗示“数据格式”本身可以增强长上下文能力,为产品设计提供新方向。

可沉淀动作:立即在现有多模态模型上复现该对比实验,收集内部业务文档形成问答数据集;将长文档问答能力封装为API服务,差异化竞争;关注ByteDance Seed后续开源,持续迭代。

参考来源

AI SUMMARY

这篇文章回答了什么

趋势解读:ByteDance study finds that asking LMMs questions beats,评估 LLM Agent 表现主要讲什么?

字节跳动与港科大联合研究发现,使用问答对训练多模态模型能显著提升长文档理解能力,而字符识别任务反而损害性能。基于此训练的MMProLong模型在预算有限的情况下超越了多个大型开源模型。

这篇文章最值得关注的要点是什么?

字节跳动与港科大联合研究发现,使用问答对训练多模态模型能显著提升长文档理解能力,而字符识别任务反而损害性能。基于此训练的MMProLong模型在预算有限的情况下超越了多个大型开源模型。;字符识别训练损害多模态模型长文本性能;问答对训练显著提升长文档理解能力;长短混合训练并非必要,长问答数据即可保持短任务能力

这篇文章和哪些AI专题相关?

它适合放在Agent工作流、AI工具、AI超级个体专题里阅读。 关联原因:这篇内容命中「Agent、工作流」等主题信号。;这篇内容命中「自动化、模型」等主题信号。;这篇内容命中「技能」等主题信号。

阅读这篇文章建议先理解哪些关键词?

建议先理解AI工具、工具、自动化、模型、Cursor这些关键词,再结合正文判断工具、机会或风险是否值得进入自己的工作流。

上一篇 Pixverse角色设计工作流测试 下一篇 AI填补业务空白的"杀手级应用"