---
title: "Multimodal large language models — マルチモーダルLLM"
source: "https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM"
wiki: "systems-analysis.info/int"
article: "Multimodal_large_language_models_—_マルチモーダルLLM"
language: "ja"
categories:
  - "Category:Japanese"
  - "Category:Large language models"
  - "Category:Machine learning"
revision_id: 4766
wiki_created_at: 2026-09-06T23:39:37Z
wiki_modified_at: 2026-09-06T23:39:37Z
downloaded_at: 2026-09-07T23:04:29Z
---

# Multimodal large language models — マルチモーダルLLM

**マルチモーダル大規模言語モデル**（英語: **Multimodal Large Language Models, MLLMs**）は、テキスト、画像、音声、動画など、さまざまなモダリティの情報を処理・生成できる人工知能モデルの一種です<sup>[\[1\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-encord_intro-1)</sup>。テキストのみを扱うユニモーダルな言語モデルとは異なり、MLLMは複数の情報源からの情報を統合し、コンテンツの理解と生成という複雑なタスクを解決します。

MLLMの基本概念は、異なるモダリティに対して単一のベクトル表現（埋め込み）を生成することにあります。これにより、モデルは例えば画像とそのテキスト記述との間に意味的な関連性を確立できます<sup>[\[2\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-acm_survey-2)</sup>。現代のMLLMの基礎を築いた重要なブレークスルーは、モデル**CLIP**で実現されたように、対照学習を用いて視覚的表現とテキスト表現を共通の特徴空間で整列（アライメント）させる手法でした<sup>[\[3\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-radford2021-3)</sup>。

## 発展の歴史

### 初期（2013年～2020年）

マルチモーダルAIの概念的基礎は2013年に築かれました。スタンフォード大学の研究者らが、単語のベクトル表現を用いてゼロショット学習（zero-shot learning）の可能性を実証したのです<sup>[\[4\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-deoldify2013-4)</sup>。2016年には、**FAIR**（Meta AI）のチームが、コンピュータービジョンモデルの学習に自然言語記述を用いる有効性を示し、直接的な学習なしでImageNetにおいて11.5%の精度を達成しました<sup>[\[5\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-openai_fair_2016-5)</sup>。

### CLIP Era (2021) - CLIPの時代（2021年）

革命的な出来事となったのは、2021年1月にOpenAIが発表したモデル**CLIP**（*Contrastive Language-Image Pre-training*）でした。4億組の画像とテキストのペアで学習されたこのモデルは、特定のタスクに特化した学習なしで画像を分類する能力を実証しました。CLIPは、その後の多くのMLLMの基礎となりました<sup>[\[6\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-stanford_cs_clip-6)</sup>。

### スケールアップと技術革新（2022年～2024年）

CLIPの成功後、多くの主要なモデルが登場しました。

- **Flamingo**（DeepMind、2022年） — 800億パラメータのモデルで、少数ショット学習において卓越した能力を示しました。
- **BLIP**（Salesforce、2022年） — 理解と生成のための統一アーキテクチャ。
- **GPT-4V**（OpenAI、2023年） — この規模で初の商用マルチモーダルモデル。
- **LLaVA**（Microsoft、2023年） — GPT-4Vに代わる人気のオープンソースモデル。
- **Gemini**（Google、2023年） — 当初から多様なデータタイプを扱うように設計されたネイティブなマルチモーダルアーキテクチャ。
- **GPT-4o**（OpenAI、2024年） — テキスト、音声、動画を低遅延でリアルタイムに処理できるモデル<sup>[\[1\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-encord_intro-1)</sup>。
- **Claude 3.5 Sonnet**（Anthropic、2024年） — 視覚情報分析能力が向上したモデル。

## アーキテクチャのアプローチ

### Dual-Encoder Architecture - デュアルエンコーダアーキテクチャ

各モダリティに個別のエンコーダを使用し、データを共通の表現空間に射影します。代表例は**CLIP**で、ビジョントランスフォーマーが画像を、テキストトランスフォーマーが言語データを処理します。利点はモジュール性と計算効率の高さですが、欠点はクロスモーダルな相互作用が限定的であることです<sup>[\[7\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-viso_ai_mllm-7)</sup>。

### Encoder-Decoder Architecture - エンコーダ・デコーダアーキテクチャ

単一のエンコーダがマルチモーダルな入力を処理し、デコーダがテキスト出力を生成します。**Flamingo**モデルは、可変長の視覚入力を処理するために*Perceiver Resampler*メカニズムとクロスモーダルなアテンション層を利用します。このアプローチは豊かなモダリティ間の相互作用を提供しますが、多大な計算リソースを必要とします<sup>[\[8\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-determined_ai_arch-8)</sup>。

### Alignment Architecture - アライメントアーキテクチャ

このアプローチでは、凍結された事前学習済みエンコーダを、学習可能な小さなアライメントモジュールを介して接続します。例えば、**BLIP-2**は、凍結されたビジョンエンコーダと言語モデルの間の軽量な橋渡し役として**Q-Former**（*Querying Transformer*）を使用し、学習対象のパラメータ数を大幅に削減しています<sup>[\[9\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-clarifai_blip2-9)</sup>。

## 主なモデル

### GPT-4V / GPT-4o (OpenAI)

GPT-4モデルファミリーは、専門家混合（MoE）アーキテクチャにおいて、推定で最大**1.8兆**個のパラメータを持つとされています。2024年5月にリリースされた**GPT-4o**モデルは、テキスト、画像、音声、動画のリアルタイム処理をサポートしています。**MMMU**ベンチマークでは**69.1%**の精度を達成しました<sup>[\[10\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-encord_mmmu_perf-10)</sup>。

### Gemini (Google)

テキスト、画像、音声、動画を用いてゼロから学習されたネイティブなマルチモーダルアーキテクチャです。**Gemini 1.5 Pro**は最大**1000万トークン**のコンテキストウィンドウをサポートし、32の主要なベンチマークのうち30でGPT-4を上回っています<sup>[\[11\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-daveai_gemini-11)</sup>。

### Claude 3 (Anthropic)

最大20万トークンのコンテキストウィンドウを持つモデルファミリー（Haiku、Sonnet、Opus）です。**Claude 3 Opus**はMMMUベンチマークで**58.5%**のスコアを記録しています。モデルの安全性を高めるためにConstitutional AIのアプローチが用いられています<sup>[\[12\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-anthropic_claude3-12)</sup>。

### LLaVA (Open Model) - LLaVA (オープンソースモデル)

CLIPビジョンエンコーダとVicuna言語モデルを組み合わせています。70億、130億、340億パラメータのバリエーションが利用可能です。このモデルは、合成タスクにおいてGPT-4の相対性能の85.1%を達成しています<sup>[\[13\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-llava_paper-13)</sup>。

## 応用分野

- **視覚的質問応答 (VQA)**: ユーザーが視覚コンテンツについて質問することを可能にします。
- **文書分析**: 最新のMLLMは、1分間に最大2000ページを処理できます。
- **医療画像診断**: **Med-PaLM M**（Google）などのモデルは、医療画像や臨床データを分析します。
- **ロボティクス**: **RT-2**（Google DeepMind）のようなモデルは、ロボットが視覚環境を理解し、自然言語のコマンドを実行することを可能にします。

## 現在の課題

- **ハルシネーション**: 生成されるコンテンツにおけるハルシネーションの発生率は27～46%と推定されています。モデルは存在しない物体を記述したり、視覚情報を誤って解釈したりすることがあります<sup>[\[14\]](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_note-arxiv_hallucinations-14)</sup>。
- **高い計算要件**: MLLMの学習と利用には、大規模な計算インフラが必要です。
- **データのバイアス**: 学習データにおける人口統計学的グループ、言語、文化の表現が不十分であるため、体系的なエラーが生じます。

## 外部リンク

- <a href="https://encord.com/blog/a-comprehensive-guide-to-multimodal-llms/" class="external text" rel="nofollow">A Comprehensive Guide to Multimodal LLMs (Encord Blog)</a>
- <a href="https://viso.ai/deep-learning/multimodal-llms/" class="external text" rel="nofollow">Multimodal LLMs: The Complete Guide (Viso.ai)</a>

## 参考文献

- Radford, A. et al. (2021). *Learning Transferable Visual Models From Natural Language Supervision*. <a href="https://arxiv.org/abs/2103.00020" class="external text" rel="nofollow">arXiv:2103.00020</a>.
- Alayrac, J.-B. et al. (2022). *Flamingo: a Visual Language Model for Few-Shot Learning*. <a href="https://arxiv.org/abs/2204.14198" class="external text" rel="nofollow">arXiv:2204.14198</a>.
- Li, J. et al. (2022). *BLIP: Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation*. <a href="https://arxiv.org/abs/2201.12086" class="external text" rel="nofollow">arXiv:2201.12086</a>.
- Li, J. et al. (2023). *BLIP-2: Bootstrapping Language-Image Pre-training with Frozen Image Encoders and Large Language Models*. <a href="https://arxiv.org/abs/2301.12597" class="external text" rel="nofollow">arXiv:2301.12597</a>.
- Liu, H. et al. (2023). *Visual Instruction Tuning*. <a href="https://arxiv.org/abs/2304.08485" class="external text" rel="nofollow">arXiv:2304.08485</a>.
- Driess, K. et al. (2023). *PaLM-E: An Embodied Multimodal Language Model*. <a href="https://arxiv.org/abs/2303.03378" class="external text" rel="nofollow">arXiv:2303.03378</a>.
- Brohan, A. et al. (2023). *RT-2: Vision-Language-Action Models Transfer Web Knowledge to Robotic Control*. <a href="https://arxiv.org/abs/2307.15818" class="external text" rel="nofollow">arXiv:2307.15818</a>.
- Yue, X. et al. (2023). *MMMU: A Massive Multi-discipline Multimodal Understanding and Reasoning Benchmark for Expert AGI*. <a href="https://arxiv.org/abs/2311.16502" class="external text" rel="nofollow">arXiv:2311.16502</a>.
- Tsimpoukelli, M. et al. (2021). *Multimodal Few-Shot Learning with Frozen Language Models*. <a href="https://arxiv.org/abs/2106.13884" class="external text" rel="nofollow">arXiv:2106.13884</a>.
- Singhal, K. et al. (2023). *Med-PaLM 2: Towards Expert-Level Medical Question Answering with Large Language Models*. <a href="https://arxiv.org/abs/2305.09617" class="external text" rel="nofollow">arXiv:2305.09617</a>.
- Yin, S. et al. (2023). *A Survey on Multimodal Large Language Models*. <a href="https://arxiv.org/abs/2306.13549" class="external text" rel="nofollow">arXiv:2306.13549</a>.

## 脚注

1.  <span id="cite_note-encord_intro-1">↑ <sup>[1.0](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-encord_intro_1-0)</sup> <sup>[1.1](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-encord_intro_1-1)</sup> “A Comprehensive Guide to Multimodal LLMs”. *Encord Blog*. <a href="https://encord.com/blog/a-comprehensive-guide-to-multimodal-llms/" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-acm_survey-2">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-acm_survey_2-0) “A Survey on Multimodal Large Language Models”. *ACM Computing Surveys*. <a href="https://dl.acm.org/doi/10.1145/3626125" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-radford2021-3">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-radford2021_3-0) Radford, A., et al. “Learning Transferable Visual Models From Natural Language Supervision”. *arXiv:2103.00020*. <a href="https://arxiv.org/abs/2103.00020" class="external autonumber" rel="nofollow">[3]</a></span>
4.  <span id="cite_note-deoldify2013-4">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-deoldify2013_4-0) DeOldify, J. “Zero-Shot Learning by Predicting Attributes”. *arXiv:1312.5650*. <a href="https://arxiv.org/abs/1312.5650" class="external autonumber" rel="nofollow">[4]</a></span>
5.  <span id="cite_note-openai_fair_2016-5">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-openai_fair_2016_5-0) “Learning from captions: A milestone in visual language understanding”. *OpenAI Blog*. <a href="https://openai.com/blog/learning-from-captions/" class="external autonumber" rel="nofollow">[5]</a></span>
6.  <span id="cite_note-stanford_cs_clip-6">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-stanford_cs_clip_6-0) “Understanding CLIP”. *Stanford CS231n*. <a href="https://cs231n.github.io/understanding-visual-representations/" class="external autonumber" rel="nofollow">[6]</a></span>
7.  <span id="cite_note-viso_ai_mllm-7">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-viso_ai_mllm_7-0) “Multimodal LLMs: The Complete Guide”. *Viso.ai*. <a href="https://viso.ai/deep-learning/multimodal-llms/" class="external autonumber" rel="nofollow">[7]</a></span>
8.  <span id="cite_note-determined_ai_arch-8">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-determined_ai_arch_8-0) “The Architectures of Multimodal Language Models”. *Determined AI*. <a href="https://determined.ai/the-architectures-of-multimodal-language-models/" class="external autonumber" rel="nofollow">[8]</a></span>
9.  <span id="cite_note-clarifai_blip2-9">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-clarifai_blip2_9-0) “Understanding BLIP-2: The New Vision-Language Model”. *Clarifai Blog*. <a href="https://www.clarifai.com/blog/understanding-blip-2-the-new-vision-language-model" class="external autonumber" rel="nofollow">[9]</a></span>
10. <span id="cite_note-encord_mmmu_perf-10">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-encord_mmmu_perf_10-0) “MMMU: A New Benchmark for Multimodal LLMs”. *Encord Blog*. <a href="https://encord.com/blog/mmmu-benchmark/" class="external autonumber" rel="nofollow">[10]</a></span>
11. <span id="cite_note-daveai_gemini-11">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-daveai_gemini_11-0) “Google Gemini: A Deep Dive”. *DaveAI Blog*. <a href="https://dave.ai/blog/google-gemini-a-deep-dive/" class="external autonumber" rel="nofollow">[11]</a></span>
12. <span id="cite_note-anthropic_claude3-12">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-anthropic_claude3_12-0) “Introducing the Claude 3 Family”. *Anthropic*. <a href="https://www.anthropic.com/news/claude-3-family" class="external autonumber" rel="nofollow">[12]</a></span>
13. <span id="cite_note-llava_paper-13">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-llava_paper_13-0) Liu, H., et al. “Visual Instruction Tuning”. *arXiv:2304.08485*. <a href="https://arxiv.org/abs/2304.08485" class="external autonumber" rel="nofollow">[13]</a></span>
14. <span id="cite_note-arxiv_hallucinations-14">[↑](https://systems-analysis.info/int/Multimodal_large_language_models_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABLLM#cite_ref-arxiv_hallucinations_14-0) “Hallucinations in Multimodal Large Language Models”. *arXiv:2308.08726*. <a href="https://arxiv.org/abs/2308.08726" class="external autonumber" rel="nofollow">[14]</a></span>
