お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Classifier.decisionTreeEnsemble
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
指定されたディシジョン ツリーを適用する分類子を作成します。
用途 | 戻り値 |
---|
ee.Classifier.decisionTreeEnsemble(treeStrings) | 分類器 |
引数 | タイプ | 詳細 |
---|
treeStrings | リスト | R などのツールで生成されたテキスト形式で指定されたディシジョン ツリー。リストの各項目には、テキスト形式の 1 つ以上のツリーが含まれている必要があります。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eCreates a classifier from a list of decision tree strings.\u003c/p\u003e\n"],["\u003cp\u003eThe decision tree strings should be in a text format compatible with tools like R.\u003c/p\u003e\n"],["\u003cp\u003eEach item in the provided list can hold one or more trees in this text format.\u003c/p\u003e\n"],["\u003cp\u003eThe output is a ready-to-use Earth Engine Classifier object.\u003c/p\u003e\n"]]],["The core functionality involves generating a classifier from a list of decision trees. The `ee.Classifier.decisionTreeEnsemble(treeStrings)` function is used to create this classifier. It takes a list of `treeStrings` as input, where each string represents one or more decision trees in a specific text format. The function then returns a new classifier that can apply this ensemble of decision trees.\n"],null,["# ee.Classifier.decisionTreeEnsemble\n\nCreates a classifier that applies the given decision trees.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------------------------|------------|\n| `ee.Classifier.decisionTreeEnsemble(treeStrings)` | Classifier |\n\n| Argument | Type | Details |\n|---------------|------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `treeStrings` | List | The decision trees, specified in the text format generated by R and other similar tools. Each item in the list should contain one or more trees in text format. |"]]