Skip to main content


Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production machine learning models. Get started with W&B today, sign up for a W&B account!


Building an LLM app? Track, debug, evaluate, and monitor LLM apps with Weave, our new suite of tools for GenAI.

 

Documentation

See the W&B Developer Guide and API Reference Guide for a full technical description of the W&B platform.

 

Quickstart

Install W&B to track, visualize, and manage machine learning experiments of any size.

Install the wandb library

pip install wandb

Sign up and create an API key

Sign up for a W&B account. Optionally, use the wandb login CLI to configure an API key on your machine. You can skip this step -- W&B will prompt you for an API key the first time you use it.

Create a machine learning training experiment

In your Python script or notebook, initialize a W&B run with wandb.init(). Specify hyperparameters and log metrics and other information to W&B.

import wandb

# Project that the run is recorded to
project = "my-awesome-project"

# Dictionary with hyperparameters
config = {"epochs" : 1337, "lr" : 3e-4}

# The `with` syntax marks the run as finished upon exiting the `with` block,
# and it marks the run "failed" if there's an exception.
#
# In a notebook, it may be more convenient to write `run = wandb.init()`
# and manually call `run.finish()` instead of using a `with` block.
with wandb.init(project=project, config=config) as run:
    # Training code here

    # Log values to W&B with run.log()
    run.log({"accuracy": 0.9, "loss": 0.1})

Visit wandb.ai/home to view recorded metrics such as accuracy and loss and how they changed during each training step. Each run object appears in the Runs column with generated names.

 

Integrations

W&B integrates with popular ML frameworks and libraries making it fast and easy to set up experiment tracking and data versioning inside existing projects.

For developers adding W&B to a new framework, follow the W&B Developer Guide.

 

W&B Hosting Options

Weights & Biases is available in the cloud or installed on your private infrastructure. Set up a W&B Server in a production environment in one of three ways:

  1. Multi-tenant Cloud: Fully managed platform deployed in W&B’s Google Cloud Platform (GCP) account in GCP’s North America regions.
  2. Dedicated Cloud: Single-tenant, fully managed platform deployed in W&B’s AWS, GCP, or Azure cloud accounts. Each Dedicated Cloud instance has its own isolated network, compute and storage from other W&B Dedicated Cloud instances.
  3. Self-Managed: Deploy W&B Server on your AWS, GCP, or Azure cloud account or within your on-premises infrastructure.

See the Hosting documentation in the W&B Developer Guide for more information.

 

Python Version Support

We are committed to supporting our minimum required Python version for at least six months after its official end-of-life (EOL) date, as defined by the Python Software Foundation. You can find a list of Python EOL dates here.

When we discontinue support for a Python version, we will increment the library’s minor version number to reflect this change.

 

Contribution guidelines

Weights & Biases ❤️ open source, and we welcome contributions from the community! See the Contribution guide for more information on the development workflow and the internals of the wandb library. For wandb bugs and feature requests, visit GitHub Issues or contact support@wandb.com.

 

W&B Community

Be a part of the growing W&B Community and interact with the W&B team in our Discord. Stay connected with the latest ML updates and tutorials with W&B Fully Connected.

 

License

MIT License

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wandb-0.29.0.tar.gz (41.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

wandb-0.29.0-py3-none-win_arm64.whl (24.7 MB view details)

Uploaded Python 3Windows ARM64

wandb-0.29.0-py3-none-win_amd64.whl (27.0 MB view details)

Uploaded Python 3Windows x86-64

wandb-0.29.0-py3-none-musllinux_1_2_x86_64.whl (30.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

wandb-0.29.0-py3-none-musllinux_1_2_aarch64.whl (27.6 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

wandb-0.29.0-py3-none-manylinux_2_28_x86_64.whl (29.8 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ x86-64

wandb-0.29.0-py3-none-manylinux_2_28_aarch64.whl (27.5 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

wandb-0.29.0-py3-none-macosx_13_0_x86_64.whl (28.9 MB view details)

Uploaded Python 3macOS 13.0+ x86-64

wandb-0.29.0-py3-none-macosx_13_0_arm64.whl (26.9 MB view details)

Uploaded Python 3macOS 13.0+ ARM64

File details

Details for the file wandb-0.29.0.tar.gz.

File metadata

  • Download URL: wandb-0.29.0.tar.gz
  • Upload date:
  • Size: 41.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wandb-0.29.0.tar.gz
Algorithm Hash digest
SHA256 44981b504427ba312e0823fa62c02ff96fb9740a83e4657e693e3e2097cde603
MD5 b682a36a2f5110bb2f348c8a23c681d0
BLAKE2b-256 c8f2ae1d136972c93c20b87f0caa8cfcacf922d2c650272d0f5af412847955a9

See more details on using hashes here.

File details

Details for the file wandb-0.29.0-py3-none-win_arm64.whl.

File metadata

  • Download URL: wandb-0.29.0-py3-none-win_arm64.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wandb-0.29.0-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 ac523a1cd863f1a883852146f451ec9b950b0d2278d6e3bbedd099c713d14047
MD5 053207428dd45ccca49aaee2c5de0360
BLAKE2b-256 9474e11e2ad886ac35bb5d568308f279357868de233e0dfaec11b9ddeed53164

See more details on using hashes here.

File details

Details for the file wandb-0.29.0-py3-none-win_amd64.whl.

File metadata

  • Download URL: wandb-0.29.0-py3-none-win_amd64.whl
  • Upload date:
  • Size: 27.0 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wandb-0.29.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 92dca672417404d2cb882fe34f38d602ddcb54ece38716f7c76630e06fc62360
MD5 4dce0c5ab75163eb28f80bbe30f085bb
BLAKE2b-256 c7f996746f484690cd23fbb84c6fd0364e8c462e804dede9efe50a98b4f27ddd

See more details on using hashes here.

File details

Details for the file wandb-0.29.0-py3-none-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wandb-0.29.0-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bdb72ba809192a1a170830bea1071804d762769448f3ceb822b41160b9f6098
MD5 6d6516640a79639ceb70ab2ab68cbb51
BLAKE2b-256 c09a6da88bb45ea28c83eeb889473f84d0d505ed5f15be40726f125621fa7467

See more details on using hashes here.

File details

Details for the file wandb-0.29.0-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wandb-0.29.0-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 217236c7347cd9c9c9e0332d5cf6d7342ca47d9d81faf2bcd1674d72988870c3
MD5 5533bca4fe5bae87ef034a10883e9ac1
BLAKE2b-256 dc21a4034ec06ed5a72cb85e3f1db013b1a8366b91ffd629bc807eb900527c73

See more details on using hashes here.

File details

Details for the file wandb-0.29.0-py3-none-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wandb-0.29.0-py3-none-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fdfd8845539302d2e3a880bc3d2586c2fd2da9515939cbc69e173d88f9e8c024
MD5 3321178ddb69d5915de54dd2e8f20603
BLAKE2b-256 32fcd9a9978acffb34ae2a2e5065f421a6e62f3ad6e27ad41229e86025b56fe3

See more details on using hashes here.

File details

Details for the file wandb-0.29.0-py3-none-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wandb-0.29.0-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 095b17df32ead3b459069b460665cea1d1781c63ad649be042894bc8e4c17b0b
MD5 7704f875ad5473fb0068c7e5b6fa19c2
BLAKE2b-256 5b157270dd7ae17dd914f25794088b6d9583bc989626be472153770ca6272cf0

See more details on using hashes here.

File details

Details for the file wandb-0.29.0-py3-none-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for wandb-0.29.0-py3-none-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2adae9c36a6d992c767c2248c175a1963db4771e650acdf3da471314c33d3d41
MD5 40fe2221e6031e9dcc209bce8dd9760e
BLAKE2b-256 e49cfb0799f91830441e65616902c3c633f5f72166732e57c137dc6c2625179e

See more details on using hashes here.

File details

Details for the file wandb-0.29.0-py3-none-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for wandb-0.29.0-py3-none-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c9efa966c3bf7b7a80bf461e4856546f0592cbb6a47e6f292db4d8e7270dab73
MD5 56e349dac66565e407df99f3cf62af64
BLAKE2b-256 f0ffb1ca84260ff441652389188510b8ad8fab0e978b936aa8b7fb7557808d4a

See more details on using hashes here.

Release history Release notifications | RSS feed

0.30.0

9 files

This release

0.29.0 This release

9 files

0.28.2

9 files

0.28.1

10 files

0.28.0

10 files

0.27.2

10 files

0.27.1

10 files

0.27.0

10 files

0.26.1

10 files

0.26.0

10 files

0.25.1

10 files

0.25.0

10 files

0.24.2

10 files

0.24.1

10 files

0.24.0

10 files

0.23.1

10 files

0.23.0

10 files

0.22.3

10 files

0.22.2

10 files

0.22.1

10 files

0.22.0

9 files

0.21.4

10 files

0.21.3

10 files

0.21.2

10 files

0.21.1

10 files

0.21.0

11 files

0.20.1

11 files

0.20.0

11 files

0.19.11

11 files

0.19.10

11 files

0.19.9

11 files

0.19.8

11 files

0.19.7

11 files

0.19.6

11 files

0.19.5

11 files

0.19.4

11 files

0.19.3

11 files

0.19.2

11 files

0.19.1

11 files

0.19.0

10 files

0.18.7

10 files

0.18.6

10 files

0.18.5

10 files

0.18.4

10 files

0.18.3

10 files

0.18.2

10 files

0.18.1

8 files

0.18.0

8 files

0.17.9

8 files

0.17.8

8 files

0.17.7

8 files

0.17.6

8 files

0.17.5

7 files

0.17.4

7 files

0.17.3

7 files

0.17.2

7 files

0.17.1

7 files

0.17.0

7 files

0.16.6

2 files

0.16.5

2 files

0.16.4

2 files

0.16.3

2 files

0.16.2

2 files

0.16.1

2 files

0.16.0

2 files

0.15.12

2 files

0.15.11

2 files

0.15.10

2 files

0.15.9

2 files

0.15.8

2 files

0.15.7

2 files

0.15.6

2 files

0.15.5

2 files

0.15.4

2 files

0.15.3

2 files

0.15.2

2 files

0.15.1

2 files

0.15.0

2 files

0.14.2

2 files

0.14.1

2 files

0.14.0

2 files

0.13.11

2 files

0.13.10

2 files

0.13.9

2 files

0.13.8

2 files

0.13.7

2 files

0.13.6

2 files

0.13.5

2 files

0.13.4

2 files

0.13.3

2 files

0.13.2

2 files

0.13.1

2 files

0.13.0

2 files

0.12.21

2 files

0.12.20

2 files

0.12.19

2 files

0.12.18

2 files

0.12.17

2 files

0.12.16

2 files

0.12.15

2 files

0.12.14

2 files

0.12.13

2 files

0.12.12

2 files

0.12.11

2 files

0.12.10

2 files

0.12.9

2 files

0.12.8

2 files

0.12.7

2 files

0.12.6

2 files

0.12.5

2 files

0.12.4

2 files

0.12.3

2 files

0.12.2

2 files

0.12.1

2 files

0.12.0

2 files

0.11.2

2 files

0.11.1

2 files

0.11.0

2 files

0.10.33

2 files

0.10.32

2 files

0.10.31

2 files

0.10.30

2 files

0.10.29

2 files

0.10.28

2 files

0.10.27

2 files

0.10.26

2 files

0.10.25

2 files

0.10.24

2 files

0.10.23

2 files

0.10.22

2 files

0.10.21

2 files

0.10.20

2 files

0.10.19

2 files

0.10.18

2 files

0.10.17

2 files

0.10.16

2 files

0.10.15

2 files

0.10.14

2 files

0.10.13

2 files

0.10.12

2 files

0.10.11

2 files

0.10.10

2 files

0.10.9

2 files

0.10.8

2 files

0.10.7

2 files

0.10.6

2 files

0.10.5

2 files

0.10.4

2 files

0.10.3

2 files

0.10.2

2 files

0.10.1

2 files

0.10.0

2 files

0.9.7

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.8.36

2 files

0.8.35

2 files

0.8.34

2 files

0.8.33

2 files

0.8.32

2 files

0.8.31

2 files

0.8.30

2 files

0.8.29

2 files

0.8.28

2 files

0.8.27

2 files

0.8.26

2 files

0.8.25

2 files

0.8.24

2 files

0.8.23

2 files

0.8.22

2 files

0.8.21

2 files

0.8.20

2 files

0.8.19

2 files

0.8.18

2 files

0.8.17

2 files

0.8.16

2 files

0.8.15

2 files

0.8.14

2 files

0.8.13

2 files

0.8.12

2 files

0.8.11

2 files

0.8.10

2 files

0.8.9

2 files

0.8.8

2 files

0.8.7

2 files

0.8.6

2 files

0.8.5

2 files

0.8.4

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.3

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.35

2 files

0.6.34

2 files

0.6.33

2 files

0.6.32

2 files

0.6.31

2 files

0.6.30

2 files

0.6.29

2 files

0.6.26

2 files

0.6.25

2 files

0.6.24

2 files

0.6.23

2 files

0.6.22

2 files

0.6.21

2 files

0.6.20

2 files

0.6.19

2 files

0.6.18

2 files

0.6.17

2 files

0.6.16

2 files

0.6.15

2 files

0.6.14

2 files

0.6.13

2 files

0.6.12

2 files

0.6.11

2 files

0.6.10

2 files

0.6.6

2 files

0.6.5

2 files

0.6.4

2 files

0.6.3

2 files

0.6.2

2 files

0.5.22

2 files

0.5.21

2 files

0.5.20

2 files

0.5.19

2 files

0.5.18

2 files

0.5.17

2 files

0.5.16

2 files

0.5.14

2 files

0.5.13

2 files

0.5.12

2 files

0.5.11

2 files

0.5.10

2 files

0.5.9

2 files

0.5.8

2 files

0.5.7

2 files

0.5.5

2 files

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.46

2 files

0.4.45

2 files

0.4.44

2 files

0.4.43

2 files

0.4.42

2 files

0.4.41

2 files

0.4.40

2 files

0.4.39

2 files

0.4.38

2 files

0.4.37

2 files

0.4.36

2 files

0.4.35

2 files

0.4.34

2 files

0.4.33

2 files

0.4.32

2 files

0.4.31

2 files

0.4.30

2 files

0.4.29

2 files

0.4.28

2 files

0.4.27

2 files

0.4.26

2 files

0.4.25

2 files

0.4.24

2 files

0.4.23

2 files

0.4.22

2 files

0.4.21

2 files

0.4.20

2 files

0.4.19

2 files

0.4.18

2 files

0.4.17

2 files

0.4.16

2 files

0.4.15

2 files

0.4.14

2 files

0.4.13

2 files

0.4.12

2 files

0.4.11

2 files

0.4.10

2 files

0.4.9

2 files

0.4.8

2 files

0.4.7

2 files

0.4.6

1 file

0.4.5

1 file

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.3

1 file

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page