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 List<OutputField>getOutputFields()Gets the output fields of aModelfrom itsOutput.List<TargetField>getTargetFields()Gets the target fields of aModelfrom itsMiningSchema.
-
-
-
Method Detail
-
getTargetFields
List<TargetField> getTargetFields()
Gets the target fields of a
Modelfrom itsMiningSchema.
-
getOutputFields
List<OutputField> getOutputFields()
Gets the output fields of a
Modelfrom itsOutput.
-
-