From f2139fb41968de129c6df92460429c678f5f62f1 Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Sat, 4 Apr 2026 17:37:47 +0200 Subject: [PATCH] fix(hpc): enable wandb tracking by default on compute nodes --- README.md | 6 ------ scripts/hpc_train.slurm | 1 - 2 files changed, 7 deletions(-) diff --git a/README.md b/README.md index 4cbfd4b..dfe3d4d 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,3 @@ Submit long-running experiments via the provided Slurm script: ```bash sbatch scripts/hpc_train.slurm ``` - -### Syncing WandB -Since compute nodes are offline, sync your WandB logs after the job finishes: -```bash -wandb sync runs//wandb -``` diff --git a/scripts/hpc_train.slurm b/scripts/hpc_train.slurm index 7c8819a..736b652 100644 --- a/scripts/hpc_train.slurm +++ b/scripts/hpc_train.slurm @@ -25,7 +25,6 @@ source "$VSC_DATA/venvs/sel3_${VSC_INSTITUTE_CLUSTER}/bin/activate" # -- HPC-specific environment flags ------------------------------------------- export MUJOCO_GL=egl # Headless OpenGL via EGL (no display required) -export WANDB_MODE=offline # Sync to WandB after the job (no outbound internet needed) # -- Run from the project root ------------------------------------------------- cd "$SLURM_SUBMIT_DIR"