Skip to main content

Auto ML Analyzer

Automatically analyzes your data and suggests ML models.

The Auto ML Analyzer node analyzes data and suggests ML approaches.

The Auto ML Analyzer node takes your dataset and context, then uses AI to analyze the data structure, identify potential target columns, and suggest the best machine learning problem type (classification, regression, etc.).

Inputs

Actions

SignalDescription
AnalyzeTriggers the analysis process

Data

DataDescription
DataArray of data objects to analyze

Configuration

DataDescription
ContextDescription of what you want to predict (e.g., "customer churn")
ML Server URLURL of the ML backend server (default: http://localhost:3001)

Outputs

Events

SignalDescription
AnalyzedTriggered when analysis is complete

Results

DataDescription
InsightsDetailed analysis results object
Problem TypeSuggested ML problem type (e.g., "classification")
Target ColumnSuggested target column for prediction
ErrorError message if analysis fails

Usage

Use this node as the first step in an automated ML pipeline. It helps you understand your data and prepares it for training.

  1. Connect your data source (e.g., from a database or CSV) to the Data input.
  2. Provide a Context string to guide the AI.
  3. Trigger the Analyze signal.
  4. Use the Insights and Problem Type outputs to configure the Auto ML Trainer node.