Weights & Biases is the machine learning platform for developers to build better models faster.

https://wandb.ai/site

Offline Mode

wandb offline mode must be used on a compute node of CINECA cluster.

The following methods can be used to enable offline mode:

wandb.init(mode="offline")

wandb offline

How to synchronize with wandb cloud

Use wandb sync command to synchronize with wandb cloud servers.

wandb sync YOUR_RUN_DIRECTORY

wandb sync --sync-all

wandb sync --clean

see official docs

How to change default path for temporary configuration files

To change the default path for saving temporary configuration files, set the environment variable WANDB_CONFIG_DIR:

export WANDB_CONFIG_DIR=YOUR_PATH

see official docs