Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.clickml.app/llms.txt

Use this file to discover all available pages before exploring further.

The Evaluation component takes the true target values and the model’s predictions and computes performance metrics and visualizations. It is always the last component in a pipeline.

Configuration

OptionDescriptionDefault
Problem Typeclassification or regression. Must match the model used.classification
MetricsWhich metrics to compute. Leave empty to compute all defaults.All

Classification metrics

MetricDescription
AccuracyFraction of predictions that are correct
PrecisionOf all positive predictions, how many are actually positive
RecallOf all actual positives, how many were correctly predicted
F1Harmonic mean of precision and recall
Confusion MatrixTable showing true vs. predicted class counts

Regression metrics

MetricDescription
MAEMean Absolute Error — average absolute difference
MSEMean Squared Error — penalizes large errors more
RMSERoot Mean Squared Error — in the same units as the target
Proportion of variance explained by the model. 1.0 = perfect.

Visualizations

Problem TypeCharts
ClassificationClass distribution, Confusion Matrix
RegressionActual vs. Predicted scatter, Residuals plot

Input / Output

Type
InputY Test (from Train-Test Split) + Predictions (from Inference)
OutputMetrics and charts (displayed in the Evaluation dashboard)