Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
Weights & Biases (wandb)
Weights & Biases is the open-source ML experiment tracking library used by tens of thousands of researchers and ML engineers. It logs training runs to a central dashboard, enabling comparison of experiments, hyperparameter sweeps, model versioning, and dataset versioning — all from a two-line code addition.
Key Features
- Automatic tracking: metrics, hyperparameters, code, system (GPU/CPU/memory)
- Interactive dashboards: compare any runs with custom plots
- Sweeps: distributed hyperparameter search (grid, random, Bayesian)
- Artifacts: version datasets, models, and evaluation tables
- W&B Tables: analyze model predictions with rich media (images, audio, text)
- Self-hosted option (wandb server) for on-prem deployments
Quick Start
import wandb
wandb.init(project="my-project", config={"lr": 0.001, "epochs": 10})
for epoch in range(10):
loss = train_one_epoch()
wandb.log({"epoch": epoch, "loss": loss})
wandb.finish()
Install via ai-supply
npx ai-supply add wandb-experiment-tracking
Curated mirror of the open-source Weights & Biases (MIT). Get it from the source.
Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.
Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).
The same gate an agent runs before installing (POST /api/v1/trust/wandb-experiment-tracking/check). Click a policy:
Consume Weights & Biases (wandb) programmatically. Authenticate with an API key or session — see Authorize an agent.
# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/wandb-experiment-tracking
# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/wandb-experiment-tracking/check \
-H "Content-Type: application/json" \
-d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'
# CLI
npx ai-supply add wandb-experiment-tracking
# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/wandb-experiment-tracking/install \
-H "Authorization: Bearer $AIM_KEY"
# MCP tool
install_listing({ "slug": "wandb-experiment-tracking" })OpenAPI spec →Curated mirror — latest upstream source. See the repository for tagged releases.