Package | Description |
---|---|
com.cloudera.oryx.app.classreg.example |
Representations of features and training / test examples that are used inside a
classification or regression process.
|
com.cloudera.oryx.app.classreg.predict |
Representations of the output of a classification or regression process.
|
com.cloudera.oryx.app.rdf.decision |
Supports decisions on features that are used inside a decision tree scoring process.
|
com.cloudera.oryx.app.rdf.tree |
Abstractions representing forests, trees, nodes and paths in decision forests.
|
Modifier and Type | Method and Description |
---|---|
static Example |
ExampleUtils.dataToExample(String[] data,
InputSchema inputSchema,
CategoricalValueEncodings valueEncodings) |
Modifier and Type | Method and Description |
---|---|
abstract void |
Prediction.update(Example train) |
void |
CategoricalPrediction.update(Example train) |
void |
NumericPrediction.update(Example train) |
Modifier and Type | Method and Description |
---|---|
boolean |
NumericDecision.isPositive(Example example) |
boolean |
CategoricalDecision.isPositive(Example example) |
abstract boolean |
Decision.isPositive(Example example) |
Modifier and Type | Method and Description |
---|---|
TerminalNode |
DecisionTree.findTerminal(Example example) |
Prediction |
DecisionTree.predict(Example test) |
Prediction |
DecisionForest.predict(Example test) |
Prediction |
TreeBasedClassifier.predict(Example test) |
void |
DecisionTree.update(Example train) |
void |
DecisionForest.update(Example train) |
void |
TreeBasedClassifier.update(Example train)
Requests that the implementation update its internal state to reflect a new
Example . |
void |
TerminalNode.update(Example train) |
Copyright © 2014–2018. All rights reserved.