0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

AIモデルのFine-Tuningの概要

Last updated at Posted at 2024-11-25

AIモデルのFine-Tuning

用語

事前学習モデル:Pretrained model == Base model == Foundation model

Fine-Tuningとは

Fine-Tuningとは事前学習させたAIモデルの重み(weight)をサイズのより小さいデータセットで再学習させるというとこです。

方法論

データセットを変更する

  • Instruction Fine Tuning
    • 知識の正誤を教える
  • Domain-Specific Fine-Tuning
    • 特定分野の知識を学習させる

学習方法を変更する

  • Full Fine-Tuning
    • すべての重みを更新する
    • コストが高い
  • Parameter Efficient Fine-Tuning (PEFT)
    • 一部の重みのみを更新する
    • コスト削減できる
    • 例:LoRa
  • Last Layer Fine-Tuning
    • 出力層のみを学習させる

パラメータや重みを削減する

  • Pruning
    • パラメータ削減
    • Train-Time Pruning
      • 学習時にモデルを自身のパラメータを削減させる
    • Post-Traning Pruning
      • 学習させたモデルの重みファイルを手動で編集する
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?