---
title: "Chinchilla (language model) — チンチラ"
source: "https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9"
wiki: "systems-analysis.info/int"
article: "Chinchilla_(language_model)_—_チンチラ"
language: "ja"
categories:
  - "Category:Google"
  - "Category:Japanese"
  - "Category:Large language models"
  - "Category:LLM families"
  - "Category:Machine learning"
revision_id: 917
wiki_created_at: 2026-09-06T22:40:42Z
wiki_modified_at: 2026-09-06T22:40:42Z
downloaded_at: 2026-09-07T22:43:05Z
---

# Chinchilla (language model) — チンチラ

**Chinchilla**（チンチラ）は、DeepMindの研究グループによって開発され、2022年3月に発表された大規模言語モデル（LLM）です<sup>[\[1\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-hoffmann2022-1)</sup>。このモデルは約**700億**のパラメータを持ち、**1兆4000億**トークン規模のテキストコーパスで学習されました。

Chinchillaの主な特徴は、その計算量的に最適な学習アプローチにあります。パラメータ数の増加に重点が置かれていた以前のモデルとは異なり、Chinchillaはモデルサイズと学習データ量の両方を比例してスケールさせる必要があるという仮説に基づいて作成されました。このアプローチにより、Chinchillaは**Gopher**（2800億パラメータ）や**GPT-3**（1750億パラメータ）といった、はるかに大規模なモデルよりも幅広い言語タスクにおいて優れた性能を示しました<sup>[\[2\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-wali2022-2)</sup>。

## 背景と開発経緯

Chinchillaの開発は、DeepMindが**Gopher**モデルファミリーを基に行ったLLMのスケーリングに関する研究の成果です<sup>[\[3\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-gopher2022-3)</sup>。2021年に発表されたGopherモデルは、2800億のパラメータを持っていましたが、比較的小規模な3000億トークンのコーパスで学習されていました。当時、業界では、モデルの性能は主にそのサイズ（パラメータ数）を増やすことによって向上し、学習データ量は比較的一定に保たれるというアプローチが主流でした。

### 計算量的に最適な学習に関する仮説

DeepMindの研究者たちは、Gopherを含む多くの大規模モデルが、そのサイズに対して**学習不足**（*undertrained*）であるという仮説を立てました。これらのモデルは、学習データが不足していたため、与えられた計算予算内で達成可能な最高の品質に到達していませんでした<sup>[\[2\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-wali2022-2)</sup>。

この仮説の核心は、計算リソースを最適に利用するためには、モデルサイズと学習データ量を互いに**比例して**増加させるべきであるという点にありました。言い換えれば、モデルのパラメータ数を2倍にする場合、学習トークン数も約2倍にする必要があるということです<sup>[\[1\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-hoffmann2022-1)</sup>。この結論は、固定されたデータ量で実験が行われていたためモデルサイズの増加価値を過大評価していた、それまでの研究とは異なるものでした。

この仮説を検証するため、DeepMindのチームは、50億から5000億トークンのデータセットで400以上の異なるサイズのモデルを学習させるという広範な実験を行いました。その結果、並行したスケーリングが最適な戦略であることが確認されました。これらの知見に基づき、新しいパラダイムの実践的なテストとしてChinchillaモデルが開発されました<sup>[\[4\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-neurips_proc-4)</sup>。

## アーキテクチャと学習

### アーキテクチャ上の特徴

Chinchillaは自己回帰型のTransformerファミリーに属し、アーキテクチャはGPT-2/GPT-3モデルに近いものです<sup>[\[3\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-gopher2022-3)</sup>。Gopherから多くの設計を引き継いでいますが、ネットワークの深さを維持しつつサイズを削減するための重要な違いがあります：

- **パラメータ**: 約700億。80層に分散。
- **モデルの幅**: 自己アテンションヘッドの数を64に（Gopherの128から）削減し、層の内部次元を8192に（Gopherの約16384から）削減。
- **オプティマイザ**: Adamの代わりに**AdamW**を使用。これにより、大規模データセットでの収束が改善されます<sup>[\[3\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-gopher2022-3)</sup>。

このようなアーキテクチャにより、ChinchillaはGopherと同じネットワークの深さを保ちながら、パラメータ数を大幅に削減することができました。これにより、メモリと計算リソースへの要求が低減されました。

### スケーリングと学習データ

仮説を検証するため、ChinchillaはGopherと同じ計算予算で学習されましたが、リソースはデータ側に再配分されました。700億パラメータのモデルは、Gopherで使用されたデータ量の約4倍にあたる**1兆4000億トークン**のコーパスで学習されました<sup>[\[1\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-hoffmann2022-1)</sup>。

この比率、すなわち**パラメータ1つあたり約20トークン**という関係は、**チンチラポイント**（*Chinchilla Point*）として知られるようになり、現代のLLMにおける計算量的に最適な学習の指針となっています<sup>[\[5\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-legalgenie-5)</sup>。この実験は、この最適限界に近い条件で学習されたChinchillaが、学習不足でありながらより大規模なモデルよりも、その潜在能力をより完全に発揮できることを確認しました。

## 結果と性能

幅広い標準的なテストにおいて、Chinchillaは以前のモデルを大幅に上回る性能を示しました。Gopherだけでなく、OpenAIのGPT-3（1750億パラメータ）やMegatron-Turing NLG（5300億パラメータ）など、当時最新の他のLLMも確実に上回りました<sup>[\[1\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-hoffmann2022-1)</sup>。

最も象徴的な結果は、数百の多様なタスクにおける知識と推論を評価する包括的なベンチマークである**MMLU**（*Measuring Massive Multitask Language Understanding*）での成績でした。Chinchillaは平均正解率**67.5%**を達成し、このクラスのモデルとして新記録を樹立、Gopherの結果を7パーセントポイント上回りました<sup>[\[4\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-neurips_proc-4)</sup>。

高い性能に加えて、Chinchillaは使用上の**経済性**も示しました。モデルサイズが小さいこと（競合の1750億以上に対し700億）は、推論（*inference*）やファインチューニング（*fine-tuning*）に必要な計算リソースが大幅に少なくて済むことを意味し、その実用化を容易にします。

## 意義と影響

Chinchillaに関する研究は、大規模言語モデルの学習アプローチに根本的な影響を与えました。

- **チンチラのスケーリング則**（*Chinchilla scaling laws*）: 明らかにされたモデルサイズとデータ量の最適な比率は、業界におけるその後の開発の事実上の標準となり、指針となりました。
- **焦点のサイズからデータへの移行**: この研究は、単にパラメータ数を無差別に増やすだけでなく、学習コーパスの作成、クリーニング、拡張により多くの注意を払うよう業界を促しました。
- **マルチモーダルシステムへの応用**: Chinchillaは、画像とテキストを理解できるDeepMindのマルチモーダルモデル**Flamingo**において、主要な言語コンポーネントとして使用されました<sup>[\[6\]](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_note-wiki_eng-6)</sup>。

Chinchillaモデル自体は一般公開されませんでしたが、その概念と科学論文で発表された結果は、LLM分野全体の発展の軌道を変え、人工知能の能力をより効率的かつバランスよく向上させる道筋を示しました。

## 参考文献

- Hendrycks, D.; Gimpel, K. (2016). *Gaussian Error Linear Units (GELUs)*. <a href="https://arxiv.org/abs/1606.08415" class="external text" rel="nofollow">arXiv:1606.08415</a>.
- Loshchilov, I.; Hutter, F. (2017). *Decoupled Weight Decay Regularization*. <a href="https://arxiv.org/abs/1711.05101" class="external text" rel="nofollow">arXiv:1711.05101</a>.
- Shoeybi, M.; et al. (2019). *Megatron‑LM: Training Multi‑Billion Parameter Language Models Using Model Parallelism*. <a href="https://arxiv.org/abs/1909.08053" class="external text" rel="nofollow">arXiv:1909.08053</a>.
- Kaplan, J.; et al. (2020). *Scaling Laws for Neural Language Models*. <a href="https://arxiv.org/abs/2001.08361" class="external text" rel="nofollow">arXiv:2001.08361</a>.
- Brown, T. B.; et al. (2020). *Language Models are Few‑Shot Learners*. <a href="https://arxiv.org/abs/2005.14165" class="external text" rel="nofollow">arXiv:2005.14165</a>.
- Rajbhandari, S.; et al. (2020). *ZeRO: Memory Optimizations Toward Training Trillion Parameter Models*. <a href="https://arxiv.org/abs/1910.02054" class="external text" rel="nofollow">arXiv:1910.02054</a>.
- Press, O.; et al. (2021). *Train Short, Test Long: Attention with Linear Biases Enables Input Length Extrapolation*. <a href="https://arxiv.org/abs/2108.12409" class="external text" rel="nofollow">arXiv:2108.12409</a>.
- Rae, J.; et al. (2021). *Scaling Language Models: Methods, Analysis & Insights from Training Gopher*. <a href="https://arxiv.org/abs/2112.11446" class="external text" rel="nofollow">arXiv:2112.11446</a>.
- Hoffmann, J.; et al. (2022). *Training Compute‑Optimal Large Language Models*. <a href="https://arxiv.org/abs/2203.15556" class="external text" rel="nofollow">arXiv:2203.15556</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>.
- Hendrycks, D.; et al. (2020). *Measuring Massive Multitask Language Understanding*. <a href="https://arxiv.org/abs/2009.03300" class="external text" rel="nofollow">arXiv:2009.03300</a>.

## 脚注

1.  <span id="cite_note-hoffmann2022-1">↑ <sup>[1.0](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-hoffmann2022_1-0)</sup> <sup>[1.1](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-hoffmann2022_1-1)</sup> <sup>[1.2](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-hoffmann2022_1-2)</sup> <sup>[1.3](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-hoffmann2022_1-3)</sup> Hoffmann, J. et al. (2022). “Training Compute-Optimal Large Language Models”. *NeurIPS 2022*. <a href="https://proceedings.neurips.cc/paper_files/paper/2022/file/c1e2faff6f588870935f114ebe04a3e5-Paper-Conference.pdf" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-wali2022-2">↑ <sup>[2.0](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-wali2022_2-0)</sup> <sup>[2.1](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-wali2022_2-1)</sup> Wali, K. (2022). “DeepMind launches GPT-3 rival, Chinchilla”. *Analytics India Magazine*. <a href="https://analyticsindiamag.com/ai-news-updates/deepmind-launches-gpt-3-rival-chinchilla/" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-gopher2022-3">↑ <sup>[3.0](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-gopher2022_3-0)</sup> <sup>[3.1](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-gopher2022_3-1)</sup> <sup>[3.2](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-gopher2022_3-2)</sup> Rae, J. et al. (2022). “Scaling Language Models: Methods, Analysis & Insights from Training Gopher”. *arXiv:2112.11446*.</span>
4.  <span id="cite_note-neurips_proc-4">↑ <sup>[4.0](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-neurips_proc_4-0)</sup> <sup>[4.1](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-neurips_proc_4-1)</sup> “Training Compute-Optimal Large Language Models”. *proceedings.neurips.cc*.</span>
5.  <span id="cite_note-legalgenie-5">[↑](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-legalgenie_5-0) “What is the Chinchilla Point ("Chinchilla Optimal")?”. *Legal Genie*.</span>
6.  <span id="cite_note-wiki_eng-6">[↑](https://systems-analysis.info/int/Chinchilla_(language_model)_%E2%80%94_%E3%83%81%E3%83%B3%E3%83%81%E3%83%A9#cite_ref-wiki_eng_6-0) “Chinchilla (language model)”. *Wikipedia*.</span>
