Agent skill · Workflow & Productivity

model-comparison-tool

Use when asked to compare multiple ML models, perform cross-validation, evaluate metrics, or select the best model for a classification/regression task.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill model-comparison-tool-dkyazzentwatwa-chatgpt-skills --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/model-comparison-tool-dkyazzentwatwa-chatgpt-skills/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

# Model Comparison Tool Compare multiple machine learning models systematically with cross-validation, metric evaluation, and automated model selection. ## Purpose Model comparison for: - Algorithm selection and benchmarking - Hyperparameter tuning comparison - Model performance validation - Feature engineering evaluation - Production model selection ## Features - **Multi-Model Comparison**: Test 5+ algorithms simultaneously - **Cross-Validation**: K-fold, stratified, time-series splits - **Comprehensive Metrics**: Accuracy, F1, ROC-AUC, RMSE, MAE, R² - **Statistical Testing**: Paired t-tests for significance - **Visualization**: Performance charts, ROC curves, learning curves - **Auto-Selection**: Recommend best model based on criteria ## Quick Start ```python from model_comparison_tool import ModelComparisonTool # Compare classifiers comparator = ModelComparisonTool() comparator.load_data(X_train, y_train, task='classification') results = comparator.compare_models( models=['rf', 'gb', 'lr', 'svm'], cv_folds=5 ) best_model = comparator.get_best_model(metric='f1') ``` ## CLI Usage ```bash # Compare models on CSV data python model_comparison_tool.py --data data.csv --target target -

What's inside
Steps it walks through
  1. Purpose
  2. Features
  3. Quick Start
  4. CLI Usage
  5. Limitations
Ships with 1 file
  • metadata.json
Commands it runs
Compare models on CSV data
python model_comparison_tool.py --data data.csv --target target --task classification
Custom model comparison
python model_comparison_tool.py --data data.csv --target price --task regression --models rf,gb,lr --cv 10
Export results
python model_comparison_tool.py --data data.csv --target y --output comparison_report.html
More from claude-skill-registry
All skills →
About this skill
What does the model-comparison-tool skill do?

Use when asked to compare multiple ML models, perform cross-validation, evaluate metrics, or select the best model for a classification/regression task.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill model-comparison-tool-dkyazzentwatwa-chatgpt-skills --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