Configure personal WandB entity and clean up docs

Set DPPO_WANDB_ENTITY to dominik_roth for personal logging
Remove irrelevant implementation details from experiment plan
This commit is contained in:
ys1087@partner.kit.edu 2025-08-27 12:24:39 +02:00
parent d43a9e2b3c
commit 5a458aac67
2 changed files with 3 additions and 6 deletions

View File

@ -17,9 +17,7 @@ module load devel/cuda/12.4
# Set environment variables for WandB
export WANDB_MODE=online
export WANDB_PROJECT=dppo_dev_test
export DPPO_WANDB_ENTITY=${DPPO_WANDB_ENTITY:-"your_wandb_username"} # TODO: Set your WandB username
# TODO: Set your WandB API key as environment variable:
# export WANDB_API_KEY=<your_api_key>
export DPPO_WANDB_ENTITY=${DPPO_WANDB_ENTITY:-"dominik_roth"} # Use personal account, not shared
# Default paths (can be overridden by environment)
export DPPO_DATA_DIR=${DPPO_DATA_DIR:-$SLURM_SUBMIT_DIR/data}

View File

@ -14,11 +14,10 @@
# Load required modules
module load devel/cuda/12.4
# Set environment variables
# Set environment variables for WandB
export WANDB_MODE=online
export WANDB_PROJECT=dppo_gym
# export WANDB_API_KEY=<your_api_key> # TODO: Set your API key
# export WANDB_ENTITY=<your_entity> # TODO: Set your entity (username or team)
export DPPO_WANDB_ENTITY=${DPPO_WANDB_ENTITY:-"dominik_roth"} # Use personal account
# Default paths (can be overridden by environment)
export DPPO_DATA_DIR=${DPPO_DATA_DIR:-$SLURM_SUBMIT_DIR/data}