Agent skill · Testing & QA

evaluate-model

Measure model performance on test datasets. Use when assessing accuracy, precision, recall, and other metrics.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill evaluate-model-homericintelligence-projectodyssey-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/ai-ml/evaluate-model-homericintelligence-projectodyssey-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Evaluate Model Measure machine learning model performance using appropriate metrics for the task (classification, regression, etc.). ## When to Use - Comparing different model architectures - Assessing performance on test/validation datasets - Detecting overfitting or underfitting - Reporting model accuracy for papers and documentation ## Quick Reference ```mojo # Mojo model evaluation pattern struct ModelEvaluator: fn evaluate_classification( mut self, predictions: ExTensor, ground_truth: ExTensor ) -> Tuple[Float32, Float32, Float32]: # Returns accuracy, precision, recall ... fn evaluate_regression( mut self, predictions: ExTensor, ground_truth: ExTensor ) -> Tuple[Float32, Float32]: # Returns MSE, MAE ... ``` ## Workflow 1. **Load test data**: Prepare test/validation dataset 2. **Generate predictions**: Run model inference on test set 3. **Select metrics**: Choose appropriate metrics (accuracy, precision, recall, F1, AUC, MSE, etc.) 4. **Calculate metrics**: Compute performance metrics 5. **Analyze results**: Compare to baseline and identify strengths/weaknesses ## Output Format Evaluation report: - Task type (classification, regression, etc.) - Metrics (accuracy, precision, r

What's inside
Steps it walks through
  1. When to Use
  2. Quick Reference
  3. Workflow
  4. Output Format
  5. References
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the evaluate-model skill do?

Measure model performance on test datasets. Use when assessing accuracy, precision, recall, and other metrics.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill evaluate-model-homericintelligence-projectodyssey-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going