Weights & Biases (wandb): Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
No edit summary
(for python 3.8 need StdEnv/2020)
 
(34 intermediate revisions by 5 users not shown)
Line 1: Line 1:
[https://wandb.ai Weights & Biases (wandb)] is a "meta machine learning platform" designed to help AI practitioners and teams build reliable machine learning models for real-world applications by streamlining the machine learning model lifecycle. By using wandb, users can track, compare, explain and reproduce their machine learning experiments.
<languages />
[[Category:AI and Machine Learning]]
<translate>
<!--T:1-->
[https://wandb.ai Weights & Biases (wandb)] is a <i>meta machine learning platform</i> designed to help AI practitioners and teams build reliable machine learning models for real-world applications by streamlining the machine learning model lifecycle. By using wandb, you can track, compare, explain and reproduce machine learning experiments.


== Using wandb on Compute Canada clusters ==
== Using wandb on Alliance clusters == <!--T:2-->


=== Availability ===  
=== Availability on compute nodes === <!--T:3-->




<!--T:4-->
Since it requires an internet connection, wandb has restricted availability on compute nodes, depending on the cluster:
Since it requires an internet connection, wandb has restricted availability on compute nodes, depending on the cluster:


 
<!--T:5-->
{| class="wikitable"
{| class="wikitable"
|-
|-
! Cluster !! Availability !! Note
! Cluster !! Availability !! Note
|-
|-
| Béluga || Yes ✅ || wandb can be used after loading the <tt>httpproxy</tt> module: <tt>module load httpproxy</tt>
| Béluga || rowspan="2"| No ❌  || rowspan="2"| wandb requires access to Google Cloud Storage, which is not accessible from the compute nodes
|-
|-
| Cedar || Yes ✅ || Internet access is enabled
| Narval
|-
|-
| Graham || No ❌ || Internet access is disabled on compute nodes
| Cedar || Yes ✅ || internet access is enabled
|-
| Graham || No ❌ || internet access is disabled on compute nodes
|}
|}
=== Béluga and Narval === <!--T:40-->
<!--T:41-->
While it is possible to upload basic metrics to Weights&Biases during a job on Béluga, the wandb package automatically uploads information about your environment to a Google Cloud Storage bucket, resulting in a crash during or at the very end of a training run. It is not currently possible to disable this behaviour. Uploading artifacts to W&B with <code>wandb.save()</code> also requires access to Google Cloud Storage, which is not available on Béluga's compute nodes.
<!--T:42-->
You can still use wandb on Béluga by enabling the [https://docs.wandb.ai/library/cli#wandb-offline <code>offline</code>] mode. In this mode, wandb will write all metrics, logs and artifacts to the local disk and will not attempt to sync anything to the Weights&Biases service on the internet. After your jobs finish running, you can sync their wandb content to the online service by running the command [https://docs.wandb.ai/ref/cli#wandb-sync <code>wandb sync</code>] on the login node.
<!--T:46-->
Note that [[Comet.ml]] is a product very similar to Weights & Biases, and works on Béluga.
=== Example === <!--T:6-->
<!--T:7-->
The following is an example of how to use wandb to track experiments on Béluga. To reproduce this on Cedar, it is not necessary to enable the offline mode.
<!--T:8-->
{{File
  |name=wandb-test.sh
  |lang="bash"
  |contents=
#!/bin/bash
#SBATCH --account=YOUR_ACCOUNT
#SBATCH --cpus-per-task=2 # At least two cpus is recommended - one for the main process and one for the wandB process
#SBATCH --mem=4G     
#SBATCH --time=0-03:00
#SBATCH --output=%N-%j.out
<!--T:9-->
module load StdEnv/2020 python/3.8
virtualenv --no-download $SLURM_TMPDIR/env
source $SLURM_TMPDIR/env/bin/activate
pip install --no-index wandb
<!--T:43-->
### Save your wandb API key in your .bash_profile or replace $API_KEY with your actual API key. Uncomment the line below and comment out "wandb offline" if running on Cedar ###
<!--T:44-->
#wandb login $API_KEY
<!--T:45-->
wandb offline
<!--T:12-->
python wandb-test.py
}}
<!--T:13-->
The script wandb-test.py is a simple example of metric logging. See [https://docs.wandb.ai W&B's full documentation] for more options.
<!--T:14-->
{{File
  |name=wandb-test.py
  |lang="python"
  |contents=
import wandb
<!--T:47-->
wandb.init(project="wandb-pytorch-test", settings=wandb.Settings(start_method="fork"))
<!--T:48-->
for my_metric in range(10):
    wandb.log({'my_metric': my_metric})
<!--T:39-->
}}
<!--T:49-->
After a training run in offline mode, there will be a new folder <code>./wandb/offline-run*</code>. You can send the metrics to the server using the command <code>wandb sync ./wandb/offline-run*</code>. Note that using <code>*</code> will sync all runs.
</translate>

Latest revision as of 17:57, 12 July 2024

Other languages:

Weights & Biases (wandb) is a meta machine learning platform designed to help AI practitioners and teams build reliable machine learning models for real-world applications by streamlining the machine learning model lifecycle. By using wandb, you can track, compare, explain and reproduce machine learning experiments.

Using wandb on Alliance clusters

Availability on compute nodes

Since it requires an internet connection, wandb has restricted availability on compute nodes, depending on the cluster:

Cluster Availability Note
Béluga No ❌ wandb requires access to Google Cloud Storage, which is not accessible from the compute nodes
Narval
Cedar Yes ✅ internet access is enabled
Graham No ❌ internet access is disabled on compute nodes

Béluga and Narval

While it is possible to upload basic metrics to Weights&Biases during a job on Béluga, the wandb package automatically uploads information about your environment to a Google Cloud Storage bucket, resulting in a crash during or at the very end of a training run. It is not currently possible to disable this behaviour. Uploading artifacts to W&B with wandb.save() also requires access to Google Cloud Storage, which is not available on Béluga's compute nodes.

You can still use wandb on Béluga by enabling the offline mode. In this mode, wandb will write all metrics, logs and artifacts to the local disk and will not attempt to sync anything to the Weights&Biases service on the internet. After your jobs finish running, you can sync their wandb content to the online service by running the command wandb sync on the login node.

Note that Comet.ml is a product very similar to Weights & Biases, and works on Béluga.

Example

The following is an example of how to use wandb to track experiments on Béluga. To reproduce this on Cedar, it is not necessary to enable the offline mode.


File : wandb-test.sh

#!/bin/bash
#SBATCH --account=YOUR_ACCOUNT
#SBATCH --cpus-per-task=2 # At least two cpus is recommended - one for the main process and one for the wandB process
#SBATCH --mem=4G       
#SBATCH --time=0-03:00
#SBATCH --output=%N-%j.out


module load StdEnv/2020 python/3.8
virtualenv --no-download $SLURM_TMPDIR/env
source $SLURM_TMPDIR/env/bin/activate
pip install --no-index wandb

### Save your wandb API key in your .bash_profile or replace $API_KEY with your actual API key. Uncomment the line below and comment out "wandb offline" if running on Cedar ###

#wandb login $API_KEY 

wandb offline

python wandb-test.py


The script wandb-test.py is a simple example of metric logging. See W&B's full documentation for more options.


File : wandb-test.py

import wandb

wandb.init(project="wandb-pytorch-test", settings=wandb.Settings(start_method="fork"))

for my_metric in range(10):
    wandb.log({'my_metric': my_metric})


After a training run in offline mode, there will be a new folder ./wandb/offline-run*. You can send the metrics to the server using the command wandb sync ./wandb/offline-run*. Note that using * will sync all runs.