Package org.jpmml.evaluator
Interface HasInputFields
-
- All Known Subinterfaces:
Evaluator,HasGroupFields,HasOrderFields
- All Known Implementing Classes:
AssociationModelEvaluator,ClusteringModelEvaluator,ComplexTreeModelEvaluator,GeneralRegressionModelEvaluator,JavaModelEvaluator,MiningModelEvaluator,ModelEvaluator,NaiveBayesModelEvaluator,NearestNeighborModelEvaluator,NeuralNetworkEvaluator,RegressionModelEvaluator,RuleSetModelEvaluator,ScorecardEvaluator,SimpleTreeModelEvaluator,SupportVectorMachineModelEvaluator,TimeSeriesModelEvaluator,TreeModelEvaluator
public interface HasInputFields
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<InputField>getActiveFields()Gets the "active" subset of feature fields of aModelfrom itsMiningSchema.List<InputField>getInputFields()Gets the feature fields plus the residual fields of aModel.List<ResidualField>getResidualFields()Gets the residual fields of aModelfrom itsOutput;List<InputField>getSupplementaryFields()Gets the "supplementary" subset of feature fields of aModelfrom itsMiningSchema.
-
-
-
Method Detail
-
getInputFields
List<InputField> getInputFields()
Gets the feature fields plus the residual fields of a
Model.
-
getActiveFields
List<InputField> getActiveFields()
Gets the "active" subset of feature fields of a
Modelfrom itsMiningSchema.
-
getSupplementaryFields
List<InputField> getSupplementaryFields()
Gets the "supplementary" subset of feature fields of a
Modelfrom itsMiningSchema.
-
getResidualFields
List<ResidualField> getResidualFields()
Gets the residual fields of a
Modelfrom itsOutput;
-
-