Skip to main content

Auto ML Predictor

Makes predictions using trained ML models.

The Auto ML Predictor node uses a trained model to generate predictions for new data.

The Auto ML Predictor node takes a Model ID (from the Trainer node) and new input data, then queries the ML model to get a prediction. It supports various types of predictions depending on the model (classification, regression, etc.).

Inputs

Actions

SignalDescription
PredictTriggers the prediction

Model

DataDescription
Model IDThe ID of the trained model to use

Data

DataDescription
Input DataObject containing feature values for prediction (e.g., {age: 25, usage: 100})

Configuration

DataDescription
ML Server URLURL of the ML backend server (default: http://localhost:3001)

Outputs

Events

SignalDescription
PredictedTriggered when prediction is received

Results

DataDescription
PredictionThe predicted value or class
ConfidenceConfidence score of the prediction (0-1)
Model UsedName/ID of the model used
ErrorError message if prediction fails

Usage

Use this node in your live application to make real-time predictions.

  1. Provide the Model ID (can be stored or passed from Trainer).
  2. Pass the current user/context data to Input Data.
  3. Trigger Predict.
  4. Use the Prediction output to customize the user experience or make decisions.