
Experiment Tracking
- 78 installs
- 7 repo stars
- Updated January 15, 2026
- eyadsibai/ltk
Helps with ai & agent building tasks.
About
experiment-tracking is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- experiment-tracking
- AI & Agent Building
- AI-coding skill
Experiment Tracking by the numbers
- 78 all-time installs (skills.sh)
- Ranked #5,313 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 30, 2026 (Skillselion catalog sync)
npx skills add https://github.com/eyadsibai/ltk --skill experiment-trackingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 78 |
|---|---|
| repo stars | ★ 7 |
| Last updated | January 15, 2026 |
| Repository | eyadsibai/ltk ↗ |
What it does
Helps with ai & agent building tasks.
Files
Experiment Tracking
Track ML experiments, metrics, and models.
Comparison
| Platform | Best For | Self-hosted | Visualization |
|---|---|---|---|
| MLflow | Open-source, model registry | Yes | Basic |
| W&B | Collaboration, sweeps | Limited | Excellent |
| Neptune | Team collaboration | No | Good |
| ClearML | Full MLOps | Yes | Good |
---
MLflow
Open-source platform from Databricks.
Core components:
- Tracking: Log parameters, metrics, artifacts
- Projects: Reproducible runs (MLproject file)
- Models: Package and deploy models
- Registry: Model versioning and staging
Strengths: Self-hosted, open-source, model registry, framework integrations Limitations: Basic visualization, less collaborative features
Key concept: Autologging for major frameworks - automatic metric capture with one line.
---
Weights & Biases (W&B)
Cloud-first experiment tracking with excellent visualization.
Core features:
- Experiment tracking: Metrics, hyperparameters, system stats
- Sweeps: Hyperparameter search (grid, random, Bayesian)
- Artifacts: Dataset and model versioning
- Reports: Shareable documentation
Strengths: Beautiful visualizations, team collaboration, hyperparameter sweeps Limitations: Cloud-dependent, limited self-hosting
Key concept: wandb.init() + wandb.log() - simple API, powerful features.
---
What to Track
| Category | Examples |
|---|---|
| Hyperparameters | Learning rate, batch size, architecture |
| Metrics | Loss, accuracy, F1, per-epoch values |
| Artifacts | Model checkpoints, configs, datasets |
| System | GPU usage, memory, runtime |
| Code | Git commit, diff, requirements |
---
Model Registry Concepts
| Stage | Purpose |
|---|---|
| None | Just logged, not registered |
| Staging | Testing, validation |
| Production | Serving live traffic |
| Archived | Deprecated, kept for reference |
---
Decision Guide
| Scenario | Recommendation |
|---|---|
| Self-hosted requirement | MLflow |
| Team collaboration | W&B |
| Model registry focus | MLflow |
| Hyperparameter sweeps | W&B |
| Beautiful dashboards | W&B |
| Full MLOps pipeline | MLflow + deployment tools |
Resources
- MLflow: <https://mlflow.org/docs/latest/>
- W&B: <https://docs.wandb.ai/>