public class LogisticRegressionPredictor extends AbstractPredictor
| Constructor and Description | 
|---|
| LogisticRegressionPredictor() | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | execute(PMMLModel pmml,
       RecordValued input,
       ScalarSettable[] predictedFields)Called to perform prediction. | 
| String | getWinnerField()Gets the name of the winner field to output. | 
| protected RecordTokenType | predictedType(PMMLModelSpec modelSpec)Given the model spec, returns the predicted type. | 
| void | setWinnerField(String name)Sets the name of the winner field to output. | 
computeMetadata, execute, getInput, getModel, getOutput, pushPrediction, stepNextcloneForExecution, getNumInputCopies, getPortSettings, handleInactiveOutputdisableParallelism, getInputPorts, getOutputPorts, newInput, newInput, newOutput, newRecordInput, newRecordInput, newRecordOutput, notifyErrorprotected RecordTokenType predictedType(PMMLModelSpec modelSpec)
AbstractPredictorpredictedType in class AbstractPredictormodelSpec - the model metadatapublic String getWinnerField()
public void setWinnerField(String name)
winnerField - the name of the winner field to output.protected void execute(PMMLModel pmml, RecordValued input, ScalarSettable[] predictedFields)
AbstractPredictorAbstractPredictor.stepNext(). For each row of input, subclasses should first set the predicted values in
 the predictedFields array and then invoke AbstractPredictor.pushPrediction().
 Subclasses should not invoke pushEndOfData since that is automatically handled by
 the base class.execute in class AbstractPredictorpmml - The input PMML modelinput - The input datapredictedFields - An array of fields that reference the predicted field locations. The
 array positionally corresponds to the type returned by AbstractPredictor.predictedType(PMMLModelSpec).Copyright © 2019 Actian Corporation. All rights reserved.