---
title: "PEFT (Parameter-Efficient Fine-Tuning) — パラメータ効率の良いファインチューニング"
source: "https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0"
wiki: "systems-analysis.info/int"
article: "PEFT_(Parameter-Efficient_Fine-Tuning)_—_パラメータ効率の良いファインチューニング"
language: "ja"
categories:
  - "Category:Japanese"
  - "Category:Large language models"
  - "Category:Machine learning"
revision_id: 5303
wiki_created_at: 2026-09-06T23:47:22Z
wiki_modified_at: 2026-09-06T23:47:22Z
downloaded_at: 2026-09-07T23:07:42Z
---

# PEFT (Parameter-Efficient Fine-Tuning) — パラメータ効率の良いファインチューニング

**パラメータ効率の良いファインチューニング**（英語: **Parameter-Efficient Fine-Tuning, PEFT**）は、大規模言語モデル（LLM）のような大規模な事前学習済みモデルを、最小限の計算コストとリソースで特定のタスクに適応させるための一連の手法です。すべてのモデルパラメータを更新する必要がある従来の**完全なファインチューニング**（*full fine-tuning*）とは異なり、PEFT手法はモデルの大部分を不変（「凍結」）のままにし、ごく一部の重み（総数の1〜5%未満）のみを変更することに焦点を当てています<sup>[\[1\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-survey_arxiv_2025-1)</sup>。

このアプローチにより、メモリ、ストレージ、学習時間の要件を大幅に削減でき、強力な基盤モデルの適応プロセスがより利用しやすくなり、破滅的忘却の問題にも強くなります<sup>[\[2\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-mlm_problems_2025-2)</sup>。

## 完全なファインチューニングの問題点

モデルの全パラメータを更新する従来の完全なファインチューニングは、PEFT開発のきっかけとなったいくつかの重大な問題に直面しています:

- **高い計算コスト:** 数千億個のパラメータを更新するには、膨大な計算能力（高性能GPU/TPU）と大容量のビデオメモリ（VRAM）が必要であり、多くの研究者にとって高価で利用しにくいものとなっています。
- **非効率なストレージ:** 新しいタスクごとに、数ギガバイトに及ぶモデルの完全なコピーを保存する必要があり、ディスクスペースの要件が指数関数的に増加します。
- **破滅的忘却（Catastrophic Forgetting）:** 新しいデータに適応する過程で、モデルが事前学習段階で得た一般的な知識を「忘れて」しまい、他のタスクでの性能が低下します。
- **過学習（Overfitting）のリスク:** パラメータ数が数十億に及ぶモデルを少量のデータセットでファインチューニングすると、一般的なパターンを学習する代わりに、訓練サンプルを「記憶」してしまう傾向があります<sup>[\[2\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-mlm_problems_2025-2)</sup>。

## PEFT手法の分類

PEFT手法は、モデルのパラメータをどのように変更するかに基づいて分類できます。主なカテゴリは、追加型、選択型、再パラメータ化型の3つです<sup>[\[3\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-huggingface_peft_methods-3)</sup>。

### 追加型手法

この手法では、元のモデルの重みをすべて凍結し、新たに小さな学習可能なモジュールを追加します。

- **アダプター（Adapters）:** 最も初期の追加型手法です。「ボトルネック」構造を持つ小さなニューラルネットワークモジュールをトランスフォーマーの層の間に挿入します。これらのアダプターの重みのみが学習されます<sup>[\[4\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-houlsby2019-4)</sup>。
- **ソフトプロンプトベースの手法（Soft Prompts）:** モデルの重みを変更する代わりに、入力データに学習可能なベクトル（「仮想トークン」）を追加して、モデルの振る舞いを誘導します。主なバリエーションは以下の通りです:
  - **Prompt Tuning:** 入力埋め込みにのみ学習可能なベクトルを追加します。
  - **Prefix-Tuning:** アテンション機構の各層の隠れ状態に学習可能なベクトルプレフィックスを追加し、よりきめ細かい制御を可能にします<sup>[\[5\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-li2021prefix-5)</sup>。
  - **P-Tuning v2:** Prefix-Tuningの考えを一般化し、モデルの全層に学習可能なプロンプトを適用することで、完全なファインチューニングに匹敵する性能を達成します<sup>[\[6\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-liu2021ptuningv2-6)</sup>。

### 選択型手法

この手法では、新しいパラメータを追加せず、既存のパラメータの小さなサブセットを選択してファインチューニングします。

- **BitFit:** 極めて経済的な手法で、バイアス項と正規化層のパラメータのみをファインチューニングし、全パラメータの0.1%未満しか更新しません。
- **差分プルーニング（Diff Pruning）:** 学習可能なマスクを使用して、学習プロセス中に更新すべき重みを動的に決定します<sup>[\[3\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-huggingface_peft_methods-3)</sup>。

### 再パラメータ化型手法

このカテゴリは、モデル適応のための重みの変化が低い「内在的ランク」を持つという仮説に基づいています。これらの手法は、フルサイズの重み行列を更新する代わりに、その低ランク表現を更新します。

- **LoRA (Low-Rank Adaptation):** 現在最も人気のあるPEFT手法です。重み行列の更新 \`ΔW\` は、2つの低ランク行列の積 \`ΔW = BA\` で近似できると仮定します。ファインチューニング中、元の行列 \`W\` は凍結され、\`A\` と \`B\` のみが学習されます<sup>[\[7\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-hu2021lora-7)</sup>。
- **QLoRA:** LoRAと量子化技術を組み合わせることで、メモリ要件をさらに削減し、650億パラメータを持つモデルを単一のコンシューマ向けGPUでファインチューニングすることを可能にします<sup>[\[8\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-dettmers2023qlora-8)</sup>。

## 性能とリソースの比較

PEFT手法は、コストを劇的に削減しつつ、完全なファインチューニングに匹敵する性能を達成することを可能にします。

| モデル     | 手法                       | 学習可能なパラメータ (%) | ベンチマーク結果 (平均精度) | 出典                                                                                                                                                                                                                                                                                                                |
|------------|----------------------------|--------------------------|-----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| BERT-Large | 完全なファインチューニング | 100%                     | 80.4 (GLUE)                 | <sup>[\[4\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-houlsby2019-4)</sup> |
| BERT-Large | Adapters                   | 3.6%                     | 80.0 (GLUE)                 | <sup>[\[4\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-houlsby2019-4)</sup> |
| LLaMA-7B   | LoRA                       | 0.83%                    | 74.7%                       | <sup>[\[9\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-dora_paper-9)</sup>  |
| LLaMA-7B   | DoRA (LoRAの派生)          | 0.84%                    | 78.1%                       | <sup>[\[9\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-dora_paper-9)</sup>  |

PEFT手法の性能と効率の比較

リソース節約におけるPEFTの主な利点:

- **GPUメモリ（VRAM）:** LLaMA 65Bモデルの完全なファインチューニングには理論上780GB以上のVRAMが必要ですが、**QLoRA**を使用すると48GB未満のVRAMを搭載したGPUでファインチューニングが可能です<sup>[\[8\]](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_note-dettmers2023qlora-8)</sup>。
- **ストレージ容量:** PEFT後に保存されるチェックポイントは、ギガバイト単位ではなくメガバイト単位です。これにより、完全にファインチューニングされたモデル1つ分の容量で、さまざまなタスクに対応する数百の「アダプター」を保存できます。

## 応用分野

当初はNLP向けに開発されましたが、PEFT手法は幅広いタスクにうまく適応されています:

- **コンピュータビジョン（CV）とマルチモーダルモデル（VLM）:** Vision Transformer (ViT)やSegment Anything Model (SAM)のようなモデルを、生物医学分野を含む画像セグメンテーションタスクに適応させます。
- **コード生成と分析:** 特定のソフトウェアプロジェクト、内部API、またはコードベースの特性に合わせてLLMを調整します。
- **生成モデル:** Stable Diffusionのような画像生成モデルを、LoRAアダプター（Dreambooth技術）を用いて「スタイル化」します。
- **音声合成:** 特定の声、イントネーション、または感情的な色合いを持つ音声を生成するためにモデルを適応させます。

## 外部リンク

- <a href="https://github.com/huggingface/peft" class="external text" rel="nofollow">GitHub上のPEFTライブラリリポジトリ</a>
- <a href="https://huggingface.co/docs/peft/index" class="external text" rel="nofollow">Hugging FaceによるPEFTライブラリの公式ドキュメント</a>

## 参考文献

- Hu, E.J. et al. (2021). *LoRA: Low-Rank Adaptation of Large Language Models*. <a href="https://arxiv.org/abs/2106.09685" class="external text" rel="nofollow">arXiv:2106.09685</a>.
- Dettmers, T. et al. (2023). *QLoRA: Efficient Finetuning of Quantized LLMs*. <a href="https://arxiv.org/abs/2305.14314" class="external text" rel="nofollow">arXiv:2305.14314</a>.
- Houlsby, N. et al. (2019). *Parameter-Efficient Transfer Learning for NLP*. <a href="https://proceedings.mlr.press/v97/houlsby19a.html" class="external text" rel="nofollow">ICML 2019</a>.
- Li, X.L.; Liang, P. (2021). *Prefix-Tuning: Optimizing Continuous Prompts for Generation*. <a href="https://arxiv.org/abs/2101.00190" class="external text" rel="nofollow">arXiv:2101.00190</a>.
- Liu, X. et al. (2022). *P-Tuning v2: Prompt Tuning Can Be Comparable to Fine-tuning Universally Across Scales and Tasks*. <a href="https://arxiv.org/abs/2110.07602" class="external text" rel="nofollow">arXiv:2110.07602</a>.
- Ben Zaken, E.; Ravfogel, S.; Goldberg, Y. (2021). *BitFit: Simple Parameter-Efficient Fine-Tuning for Transformer-Based Masked Language Models*. <a href="https://arxiv.org/abs/2106.10199" class="external text" rel="nofollow">arXiv:2106.10199</a>.
- Guo, D.; Rush, A.M.; Kim, Y. (2020). *Parameter-Efficient Transfer Learning with Diff Pruning*. <a href="https://arxiv.org/abs/2012.07463" class="external text" rel="nofollow">arXiv:2012.07463</a>.
- Jiang, Z. et al. (2024). *MoRA: High-Rank Updating for Parameter-Efficient Fine-Tuning*. <a href="https://arxiv.org/abs/2405.12130" class="external text" rel="nofollow">arXiv:2405.12130</a>.
- Mao, K. et al. (2024). *A Survey on LoRA of Large Language Models*. <a href="https://arxiv.org/abs/2407.11046" class="external text" rel="nofollow">arXiv:2407.11046</a>.
- Chen, S. et al. (2024). *Parameter-Efficient Fine Tuning: A Comprehensive Analysis Across Applications*. <a href="https://arxiv.org/abs/2404.13506" class="external text" rel="nofollow">arXiv:2404.13506</a>.
- Zhang, J. et al. (2025). *Parameter-Efficient Fine-Tuning for Foundation Models*. <a href="https://arxiv.org/abs/2501.13787" class="external text" rel="nofollow">arXiv:2501.13787</a>.

## 脚注

1.  <span id="cite_note-survey_arxiv_2025-1">[↑](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-survey_arxiv_2025_1-0) “Parameter-Efficient Fine-Tuning for Foundation Models”. *arXiv:2501.13787*. <a href="https://arxiv.org/abs/2501.13787" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-mlm_problems_2025-2">↑ <sup>[2.0](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-mlm_problems_2025_2-0)</sup> <sup>[2.1](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-mlm_problems_2025_2-1)</sup> “5 Problems Encountered Fine-Tuning LLMs with Solutions”. *Machine Learning Mastery*. <a href="https://machinelearningmastery.com/5-problems-encountered-fine-tuning-llms-with-solutions/" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-huggingface_peft_methods-3">↑ <sup>[3.0](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-huggingface_peft_methods_3-0)</sup> <sup>[3.1](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-huggingface_peft_methods_3-1)</sup> “PEFT: Parameter-Efficient Fine-Tuning Methods for LLMs”. *Hugging Face Blog*. <a href="https://huggingface.co/blog/samuellimabraz/peft-methods" class="external autonumber" rel="nofollow">[3]</a></span>
4.  <span id="cite_note-houlsby2019-4">↑ <sup>[4.0](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-houlsby2019_4-0)</sup> <sup>[4.1](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-houlsby2019_4-1)</sup> <sup>[4.2](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-houlsby2019_4-2)</sup> Houlsby, N., et al. “Parameter-Efficient Transfer Learning for NLP”. *Proceedings of the 36th International Conference on Machine Learning*. <a href="https://proceedings.mlr.press/v97/houlsby19a.html" class="external autonumber" rel="nofollow">[4]</a></span>
5.  <span id="cite_note-li2021prefix-5">[↑](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-li2021prefix_5-0) Li, X.L., Liang, P. “Prefix-Tuning: Optimizing Continuous Prompts for Generation”. *arXiv:2101.00190*. <a href="https://arxiv.org/abs/2101.00190" class="external autonumber" rel="nofollow">[5]</a></span>
6.  <span id="cite_note-liu2021ptuningv2-6">[↑](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-liu2021ptuningv2_6-0) Liu, X., et al. “P-Tuning v2: Prompt Tuning Can Be Comparable to Fine-tuning Universally Across Scales and Tasks”. *arXiv:2110.07602*. <a href="https://arxiv.org/abs/2110.07602" class="external autonumber" rel="nofollow">[6]</a></span>
7.  <span id="cite_note-hu2021lora-7">[↑](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-hu2021lora_7-0) Hu, E.J., et al. “LoRA: Low-Rank Adaptation of Large Language Models”. *arXiv:2106.09685*. <a href="https://arxiv.org/abs/2106.09685" class="external autonumber" rel="nofollow">[7]</a></span>
8.  <span id="cite_note-dettmers2023qlora-8">↑ <sup>[8.0](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-dettmers2023qlora_8-0)</sup> <sup>[8.1](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-dettmers2023qlora_8-1)</sup> Dettmers, T., et al. “QLoRA: Efficient Finetuning of Quantized LLMs”. *arXiv:2305.14314*. <a href="https://arxiv.org/abs/2305.14314" class="external autonumber" rel="nofollow">[8]</a></span>
9.  <span id="cite_note-dora_paper-9">↑ <sup>[9.0](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-dora_paper_9-0)</sup> <sup>[9.1](https://systems-analysis.info/int/PEFT_(Parameter-Efficient_Fine-Tuning)_%E2%80%94_%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E5%8A%B9%E7%8E%87%E3%81%AE%E8%89%AF%E3%81%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%B3%E3%83%81%E3%83%A5%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0#cite_ref-dora_paper_9-1)</sup> “Parameter Efficient Fine Tuning: A Comprehensive Analysis Across Applications”. *arXiv:2404.13506*. <a href="https://arxiv.org/html/2404.13506v1" class="external autonumber" rel="nofollow">[9]</a></span>
