Use data the model did not learn from
Keep a holdout set that reflects how predictions will be made. For future predictions, respect time ordering. For repeated customers or devices, avoid an accidental split that makes evaluation unrealistically easy. Fit learned preparation steps on training data only. Ask Dawn to explain how missing-value handling, encoding, and feature selection are applied to the holdout set.Match metrics to the decision
Available evaluation outputs depend on the model and configured steps. If a needed metric is absent, ask Dawn to create an evaluation output from the predictions and actual outcomes.
Inspect errors and explanations
Look at false positives, false negatives, or large residuals. Check whether errors concentrate in a particular period, category, or data-quality issue. Feature importance and model explanations can help investigate behaviour, but they do not establish causation. For a model driving a limited-capacity process, evaluate the actual decision rule. For example, if a team can review 100 records per week, inspect the quality of that ranked subset.Use a model on new data
- Prepare the new data with the same feature definitions used for training.
- Select the intended trained model in the inference step.
- Run predictions into a named output dataset.
- Check row counts, identifiers, missing predictions, and output columns.
- Validate a small sample before connecting the output to a downstream workflow.