大規模言語モデル (LLM) は、答えを推論する論理的根拠として中間推論チェーンを生成するように促す思考チェーン (CoT) を活用することにより、複雑な推論で印象的なパフォーマンスを示しています。ただし、既存の CoT 研究は、LLM を展開するのが難しい LLM を使用した言語モダリティでほとんど分離されています。マルチモダリティでCoT推論を引き出すために、考えられる解決策は、ビジョンと言語機能を融合してCoT推論を実行することにより、小さな言語モデルを微調整することです。重要な課題は、これらの言語モデルが、答えの推論を誤解させる幻覚的な推論チェーンを生成する傾向があることです。このようなミスの影響を軽減するために、分離されたトレーニング フレームワークに視覚機能を組み込む Multimodal-CoT を提案します。フレームワークは、論理的根拠の生成と回答の推論を 2 つの段階に分けます。両方の段階でビジョン機能を組み込むことにより、モデルは、答えの推論に役立つ効果的な根拠を生成できます。 Multimodal-CoT を使用すると、10 億パラメーター未満のモデルは、ScienceQA ベンチマークで以前の最先端の LLM (GPT-3.5) を 16% (75.17%->91.68%) 上回っており、さらには人間のパフォーマンスを上回っています。コードは https://github.com/amazon-science/mm-cot で公開されています。
Large language models (LLMs) have shown impressive performance on complex reasoning by leveraging chain-of-thought (CoT) prompting to generate intermediate reasoning chains as the rationale to infer the answer. However, existing CoT studies are mostly isolated in the language modality with LLMs, where LLMs are hard to deploy. To elicit CoT reasoning in multimodality, a possible solution is to fine-tune small language models by fusing the vision and language features to perform CoT reasoning. The key challenge is that those language models tend to generate hallucinated reasoning chains that mislead the answer inference. To mitigate the effect of such mistakes, we propose Multimodal-CoT that incorporates vision features in a decoupled training framework. The framework separates the rationale generation and answer inference into two stages. By incorporating the vision features in both stages, the model is able to generate effective rationales that contribute to answer inference. With Multimodal-CoT, our model under 1 billion parameters outperforms the previous state-of-the-art LLM (GPT-3.5) by 16% (75.17%->91.68%) on the ScienceQA benchmark and even surpasses human performance. Code is publicly available at https://github.com/amazon-science/mm-cot.