Package org.jpmml.evaluator
Interface HasResultFields
-
- All Known Subinterfaces:
Evaluator
- All Known Implementing Classes:
AssociationModelEvaluator,ClusteringModelEvaluator,ComplexTreeModelEvaluator,GeneralRegressionModelEvaluator,JavaModelEvaluator,MiningModelEvaluator,ModelEvaluator,NaiveBayesModelEvaluator,NearestNeighborModelEvaluator,NeuralNetworkEvaluator,RegressionModelEvaluator,RuleSetModelEvaluator,ScorecardEvaluator,SegmentResult,SimpleTreeModelEvaluator,SupportVectorMachineModelEvaluator,TimeSeriesModelEvaluator,TreeModelEvaluator
public interface HasResultFields
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<OutputField>getOutputFields()Gets the output fields of aModelfrom itsOutput.java.util.List<TargetField>getTargetFields()Gets the dependent (ie.
-
-
-
Method Detail
-
getTargetFields
java.util.List<TargetField> getTargetFields()
Gets the dependent (ie. target in supervised training) fields of a
Modelfrom itsMiningSchema.
-
getOutputFields
java.util.List<OutputField> getOutputFields()
Gets the output fields of a
Modelfrom itsOutput.
-
-