Skip to main content

Auto ML Trainer

Automatically trains ML models based on your data.

The Auto ML Trainer node handles the model training process.

The Auto ML Trainer node automates the training of machine learning models. It takes a data source and configuration, sends a training request to the ML server, and monitors the training progress.

Inputs

Actions

SignalDescription
TrainTriggers the training process

Data

DataDescription
Data SourceTable name or data source identifier

Configuration

DataDescription
Target ColumnThe column you want to predict
Problem Type'classification', 'regression', 'time_series', or 'auto' (default: 'auto')
Model NameOptional custom name for the model
ML Server URLURL of the ML backend server (default: http://localhost:3001)

Outputs

Events

SignalDescription
TrainedTriggered when training is successfully completed

Results

DataDescription
Model IDThe unique identifier of the trained model
StatusCurrent status (training, completed, error)
AccuracyThe accuracy score of the trained model
ErrorError message if training fails

Usage

Use this node after analyzing your data or when you know what you want to predict.

  1. Set the Data Source to your dataset.
  2. Specify the Target Column (what to predict).
  3. Trigger Train.
  4. The node will emit Trained when the model is ready.
  5. Use the Model ID output with the Auto ML Predictor node.