Model evaluation reporting
Skill yeaight7/agent-powerups/plugins/machine-learning-ops/skills/model-evaluation-reporting
Use when writing or reviewing a model evaluation report -- accuracy is being quoted alone, or stakeholders need failure modes, segment performance, and business trade-offs made explicit.From its SKILL.md
npx -y skills add yeaight7/agent-powerups --skill model-evaluation-reportingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.1 KB, 412 tokens by cl100k_base, as published. Nobody here has run it
Purpose
Raw accuracy metrics are not enough. Evaluation must reflect the actual business impact and failure modes of the model; this standard turns metrics into a report a stakeholder can act on.
When to Use
- Producing an evaluation report for a trained model
- Reviewing a report that quotes a single headline metric
- A go/no-go decision depends on understanding error costs
Inputs
- Model predictions on a held-out set
- Business context: cost of errors, key user/customer segments
Workflow
- Beyond accuracy: include the confusion matrix; report Precision, Recall, and F1; explain the cost of a False Positive vs a False Negative in the business context.
- Slice analysis: report performance on key segments. A model can be 95% accurate overall but only 40% accurate on new users.
- Calibration: if the model outputs probabilities, verify they are calibrated — a prediction of 0.8 should come true about 80% of the time.
- Format as a Markdown report that a non-technical stakeholder can read, highlighting trade-offs and worst-case scenarios.
Output
- A Markdown evaluation report: headline metrics, confusion matrix, per-segment table, calibration assessment, and explicit trade-offs/worst cases
Verification
- Confusion matrix plus Precision/Recall/F1 present (not accuracy alone)
- False Positive vs False Negative costs stated in business terms
- Key segments sliced and reported
- Calibration assessed whenever probabilities are output
- Report readable by a non-technical stakeholder
Failure Modes
- Headline-metric reporting — one aggregate number hides segment failures; always include slices.
- Cost-free framing — treating FP and FN as equivalent when their business impact differs by orders of magnitude.
- Uncalibrated probabilities read as confidence — stakeholders will read 0.8 as "80% sure"; verify calibration before they do.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.