Choose a modelling task
Start with a straightforward baseline before a more complex model. A complex model is useful only if its measured performance and operating cost justify it.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Define a prediction, prepare suitable data, and turn training into a repeatable workflow.
| Task | Example | Typical approach |
|---|---|---|
| Classification | Which customers are likely to stop buying? | Predict a category or its probability. |
| Regression | What will an order’s delivery time be? | Predict a numeric value. |
| Clustering | Which customers have similar behaviour? | Group similar records without a target label. |
| Time-dependent prediction | What will demand be next month? | Prepare time-aware features and validation; consider a suitable custom model. |
Help me design a customer churn model. We want to predict at the end of each
month which customers will make no purchase in the next 60 days. Define the
training row, target, eligible population, and information available at the
prediction date. Identify missing data before building anything.
Build a baseline classification pipeline for this prepared dataset. Show the
feature columns, target, split approach, algorithm, and evaluation metrics.
Exclude identifiers and any fields unavailable at prediction time. Let me
review the configuration before running training.