Package org.jbpm.prediction.pmml
Class PMMLRandomForestConfiguration
- java.lang.Object
-
- org.jbpm.prediction.pmml.PMMLRandomForestConfiguration
-
public class PMMLRandomForestConfiguration extends Object
Encapsulates the model's output information.
-
-
Constructor Summary
Constructors Constructor Description PMMLRandomForestConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetConfidenceThreshold()Returns the confidence threshold to use for automatic task completionList<String>getInputFeatures()FilegetModelFile()StringgetOutcomeName()Returns the name of the output attributevoidsetConfidenceThreshold(double confidenceThreshold)voidsetInputFeatures(List<String> inputFeatures)voidsetModelFile(File modelFile)voidsetOutcomeName(String outcomeName)
-
-
-
Method Detail
-
getModelFile
public File getModelFile()
-
setModelFile
public void setModelFile(File modelFile)
-
getOutcomeName
public String getOutcomeName()
Returns the name of the output attribute- Returns:
- The name of the output attribute
-
setOutcomeName
public void setOutcomeName(String outcomeName)
-
getConfidenceThreshold
public double getConfidenceThreshold()
Returns the confidence threshold to use for automatic task completion- Returns:
- The confidence threshold, between 0.0 and 1.0
-
setConfidenceThreshold
public void setConfidenceThreshold(double confidenceThreshold)
-
-