Package | Description |
---|---|
com.cloudera.oryx.app.rdf.tree |
Abstractions representing forests, trees, nodes and paths in decision forests.
|
Modifier and Type | Class and Description |
---|---|
class |
DecisionNode
Represents an internal node in a
DecisionTree , which encapsulates a binary decision over a
feature in an example. |
class |
TerminalNode
Represents a leaf node in a
DecisionTree , which contains a Prediction for a target
rather than a decision over an example. |
Modifier and Type | Method and Description |
---|---|
TreeNode |
DecisionTree.findByID(String id) |
TreeNode |
DecisionNode.getLeft() |
TreeNode |
DecisionNode.getRight() |
Constructor and Description |
---|
DecisionNode(String id,
Decision decision,
TreeNode left,
TreeNode right) |
DecisionTree(TreeNode root) |
Copyright © 2014–2018. All rights reserved.