Agent skill
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.
Install this agent skill to your Project
npx add-skill https://github.com/dkyazzentwatwa/chatgpt-skills/tree/main/model-comparison-tool
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
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
# 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
Limitations
- Requires sufficient data for meaningful cross-validation
- Large datasets may have long comparison times
- Deep learning models not included (use dedicated frameworks)
- Feature engineering must be done beforehand
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
video-to-gif
Convert video clips to optimized GIFs with speed control, cropping, text overlays, and file size optimization. Create perfect GIFs for social media, documentation, and presentations.
audio-analyzer
Comprehensive audio analysis with waveform visualization, spectrogram, BPM detection, key detection, frequency analysis, and loudness metrics.
topic-modeler
Extract topics from text collections using LDA (Latent Dirichlet Allocation) with keyword extraction and topic visualization.
language-detector
Detect language of text with confidence scores, support for 50+ languages, and batch text classification.
image-filter-lab
Apply artistic filters to images including vintage, sepia, B&W, blur, sharpen, vignette, and color adjustments. Create custom filter presets.
qr-code-generator
Generate QR codes with URLs and UTM tracking. Exports PNG/SVG with captions. Use for single codes, batch generation, or marketing campaigns with tracking parameters.
Didn't find tool you were looking for?