デシジョン フォレスト
ディシジョン フォレストとは、複数のディシジョン ツリーで構成されるモデルを表す一般的な用語です。ディシジョン フォレストの予測は、そのディシジョン ツリーの予測の集計です。この集計の実装は、デシジョン フォレストのトレーニングに使用されるアルゴリズムによって異なります。たとえば、マルチクラス分類ランダム フォレスト(ディシジョン フォレストの一種)では、各ツリーが 1 つのクラスに投票し、ランダム フォレスト予測が最も代表的なクラスです。二項分類勾配ブースティング ツリー(GBT)(別のタイプのデシジョン フォレスト)では、各ツリーがロジット(浮動小数点値)を出力します。勾配ブースティング ツリー予測は、それらの値の合計値と有効化関数(sigmoid など)を合わせたものです。
次の 2 つの章では、これら 2 つのデシジョン フォレスト アルゴリズムについて詳しく説明します。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2022-09-27 UTC。
[null,null,["最終更新日 2022-09-27 UTC。"],[[["Decision forests encompass models composed of multiple decision trees, with predictions derived from aggregating individual tree predictions."],["Prediction aggregation methods vary depending on the specific decision forest algorithm employed, such as voting in random forests or logit summation in gradient boosted trees."],["Random forests and gradient boosted trees are two primary examples of decision forest algorithms, each utilizing a unique approach to prediction aggregation."],["Upcoming chapters will delve deeper into the workings of random forests and gradient boosted trees."]]],[]]