ML Predict
Takes feature inputs and runs against a trained ML model in the form of a pickle file and returns predictive outputs.
Inputs
Name
Type
Description
modelUrl
string
URL of the trained model in the form of a pickle file that is to be used for the prediction.
confidenceInterval
number
confidence interval to use when calculating the lower and upper confidence from the prediction output.
input
string
the array of scaled features to be sent to the predictive model in the length it was trained with.
output
string
the property to write the prediction with confidence output to.
Outputs
Action output
Name
Type
Description
predictionobject
object
the prediction output with mean, min, max, lowerConfidence, and upperConfidence.
Last updated