Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

LLM-Boost

Algorithm

分類問題を想定する。

  1. [2304.13188] TABLET: Learning From Instructions For Tabular Data で提案されたツールを使ってテーブルの各サンプルをfew-shot learningするプロンプトを作る(Figure 2がその例)

  2. LLMによって出力したクラスラベルの負のlanguage modelling loss (mean reduced cross-entropy) をnormalizeされていない予測スコアとする。

    • 出力は異なるトークン数になりうるためmeanをとる(例:“Greater than 50K” と "Less than or equal to 50K"など)

  3. 予測スコアからその平均値を引いて中心化する

  4. こうして得られたスコア(transformer score)をもとにGBDTを学習する。