weights-and-biases

Automate machine learning experiment logging and management with Weights & Biases.

3|1|Updated May 19, 2026
One-click install
npx skills add https://github.com/Quill-Agent/Quill-Agent --skill weights-and-biases-quill-agent
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: weights-and-biases
Source: https://github.com/Quill-Agent/Quill-Agent/tree/main/skills/mlops/evaluation/weights-and-biases
Command: npx skills add https://github.com/Quill-Agent/Quill-Agent --skill weights-and-biases-quill-agent

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires wandb, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill helps ML practitioners track experiments, manage models, and collaborate efficiently using Weights & Biases (W&B).

Core Features & Use Cases

  • Experiment Tracking: Log metrics, visualize training progress, and compare runs.
  • Model Registry: Store, version, and manage models with lineage.
  • Collaboration: Share runs with team members and collaborate on ML projects.
  • Use Case: You can use this Skill to automate the logging of your model training process, ensuring that all necessary data is recorded and easily accessible for analysis.

Quick Start

To log an experiment with W&B, first install the wandb library:

pip install wandb

Then initialize a run and log your metrics:

import wandb
wandb.init(project="my-project")
wandb.log({"loss": 0.5, "accuracy": 0.92})

Frequently Asked Questions about weights-and-biases

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I track machine learning experiments using Weights & Biases?

The wandb library requires Python to interface with the W&B API, allowing you to automate logging, visualize training progress, and manage model versions within your data science projects.

Can I manage model versions and artifacts with W&B?

Yes, you can use the model registry functionality to store, version, and manage models with lineage, ensuring reproducible experiments and structured model tracking across projects.

What is the best way to share ML experiment runs with team members?

Sharing ML experiment runs is handled through W&B collaboration features, which let you share tracked metrics and visualizations with team members to collaborate on projects directly.

Do I need Python to use the wandb library for experiment tracking?

Yes, Python is required to use the wandb library for interfacing with the W&B API to automate logging, visualize training progress, and manage model artifacts.

How does experiment tracking handle reproducibility for data science projects?

Experiment tracking ensures reproducibility by automating the logging of your model training process, recording all necessary metrics and artifacts for accessible analysis and comparison.