ee.Classifier.decisionTreeEnsemble
Creates a classifier that applies the given decision trees.
Usage | Returns |
---|
ee.Classifier.decisionTreeEnsemble(treeStrings) | Classifier |
Argument | Type | Details |
---|
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. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["Creates a classifier from a list of decision tree strings."],["The decision tree strings should be in a text format compatible with tools like R."],["Each item in the provided list can hold one or more trees in this text format."],["The output is a ready-to-use Earth Engine Classifier object."]]],["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"]]