Agent skill

supervised-learning

Build production-ready classification and regression models with hyperparameter tuning

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill supervised-learning --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Version: 1.4.0
Path: skills/ai-ml/supervised-learning/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

# Supervised Learning Skill > Build, tune, and evaluate classification and regression models. ## Quick Start ```python from sklearn.ensemble import RandomForestClassifier from sklearn.model_selection import cross_val_score, train_test_split # Split data X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.2, stratify=y, random_state=42 ) # Train model model = RandomForestClassifier(n_estimators=100, random_state=42) model.fit(X_train, y_train) # Evaluate cv_scores = cross_val_score(model, X_train, y_train, cv=5, scoring='f1_weighted') print(f"CV F1: {cv_scores.mean():.4f} (+/- {cv_scores.std()*2:.4f})") print(f"Test Accuracy: {model.score(X_test, y_test):.4f}") ``` ## Key Topics ### 1. Classification Algorithms | Algorithm | Best For | Complexity | |-----------|----------|------------| | **Logistic Regression** | Baseline, interpretable | O(n*d) | | **Random Forest** | Tabular, general | O(n*d*trees) | | **XGBoost** | Competitions, accuracy | O(n*d*trees) | | **SVM** | High-dim, small data | O(n²) | ```python from sklearn.linear_model import LogisticRegression from sklearn.ensemble import RandomForestClassifier from xgboost import XGBClassifier classifiers = { 'lr

What's inside
Steps it walks through
  1. Quick Start
  2. Key Topics
  3. 1. Classification Algorithms
  4. 2. Regression Algorithms
  5. 3. Hyperparameter Tuning
  6. 4. Handling Class Imbalance
  7. 5. Model Comparison
  8. Best Practices
  9. DO
  10. DON'T
  11. Exercises
  12. Exercise 1: Model Selection
  13. Exercise 2: Hyperparameter Tuning
  14. Unit Test Template
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the supervised-learning skill do?

Build production-ready classification and regression models with hyperparameter tuning

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill supervised-learning --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