- The commands and operators used in the query.
- The available evaluation metrics.
- Explainable AI (XAI) options.
Common Task Types
Examples
Regression
A regression task predicts a continuous value. For example, predicting the total amount of purchases per customer over the next 30 days:PQL
SUM() operator without a boolean condition.
Binary Classification
A binary classification task predicts a true/false outcome. For example, predicting which customers will make no transactions in the next 30 days:PQL
-
The
=operator makes this a classification task. -
Changing it to
>would modify the positive label of the prediction.