デシジョン フォレスト
デシジョン フォレストは、複数のディシジョン ツリーで構成されるモデルを表す一般的な用語です。デシジョン フォレストの予測は、そのディシジョン ツリーの予測の集計です。この集計の実装は、デシジョン フォレストのトレーニングに使用されるアルゴリズムによって異なります。たとえば、マルチクラス分類ランダム フォレスト(ディシジョン フォレストの一種)では、各ツリーが 1 つのクラスに投票し、ランダム フォレストの予測が最も代表的なクラスになります。二値分類の勾配ブースト ツリー(GBT)(別のタイプのディシジョン フォレスト)では、各ツリーがロジット(浮動小数点値)を出力し、勾配ブースト ツリーの予測は、それらの値の合計に活性化関数(シグモイドなど)が続くものです。
次の 2 章では、これらの 2 つの決定木アルゴリズムについて詳しく説明します。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-02-25 UTC。
[null,null,["最終更新日 2025-02-25 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."]]],[]]