Agent skill · AI & Agents

ML Experiment Tracking

Managing ML experiments, metrics, parameters, and artifacts using MLflow, Weights & Biases, and best practices for reproducible ML experiments and model versioning.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill model-experiments --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/ai-ml/model-experiments/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

# ML Experiment Tracking > **Current Level:** Advanced > **Domain:** Data Science / ML / Experimentation --- ## Overview Experiment tracking manages ML experiments, metrics, parameters, and artifacts. This guide covers MLflow, Weights & Biases, and best practices for tracking experiments, comparing models, and ensuring reproducibility in ML development. ## Experiment Tracking Importance **Benefits:** - Reproducibility - Comparison of experiments - Collaboration - Model versioning - Hyperparameter optimization ## MLflow ### Installation ```bash pip install mlflow mlflow ui # Start UI on http://localhost:5000 ``` ### Tracking ```python # MLflow tracking import mlflow import mlflow.sklearn from sklearn.ensemble import RandomForestClassifier from sklearn.metrics import accuracy_score, f1_score # Set experiment mlflow.set_experiment("my-experiment") # Start run with mlflow.start_run(run_name="random-forest-v1"): # Log parameters mlflow.log_param("n_estimators", 100) mlflow.log_param("max_depth", 10) mlflow.log_param("random_state", 42) # Train model model = RandomForestClassifier( n_estimators=100, max_depth=10, random_state=42 ) model.fit(X_train, y_train) # Make predictions y_pred = m

What's inside
Steps it walks through
  1. Overview
  2. Experiment Tracking Importance
  3. MLflow
  4. Installation
  5. Tracking
  6. Autologging
  7. Model Registry
  8. Projects
  9. Weights & Biases
  10. Hyperparameter Sweeps
  11. TensorBoard
  12. Metrics Logging
  13. Hyperparameter Tracking
  14. Artifact Storage
Ships with 1 file
  • metadata.json
Commands it runs
pip install mlflow
mlflow ui  # Start UI on http://localhost:5000
More from claude-skill-registry
All skills →
About this skill
What does the ML Experiment Tracking skill do?

Managing ML experiments, metrics, parameters, and artifacts using MLflow, Weights & Biases, and best practices for reproducible ML experiments and model versioning.

How do I install it?

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