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 |
---|---|---|
| string | URL of the trained model in the form of a pickle file that is to be used for the prediction. |
| number | confidence interval to use when calculating the lower and upper confidence from the prediction output. |
| string | the array of scaled features to be sent to the predictive model in the length it was trained with. |
| string | the property to write the prediction with confidence output to. |
Outputs
Action output
Name | Type | Description |
---|---|---|
| object | the prediction output with mean, min, max, lowerConfidence, and upperConfidence. |
Last updated