From 49e0a5b9bc167471cafaae05473653180524c9b2 Mon Sep 17 00:00:00 2001 From: Farbod Farshidian Date: Tue, 27 Feb 2024 13:34:57 -0500 Subject: [PATCH] Add description --- rsl_rl/utils/wandb_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rsl_rl/utils/wandb_utils.py b/rsl_rl/utils/wandb_utils.py index e14661e..8552d9c 100644 --- a/rsl_rl/utils/wandb_utils.py +++ b/rsl_rl/utils/wandb_utils.py @@ -30,7 +30,7 @@ class WandbSummaryWriter(SummaryWriter): entity = os.environ["WANDB_USERNAME"] except KeyError: entity = None - print("`WANDB_USERNAME` is not found! The run will be sent to your username.") + print("`WANDB_USERNAME` is not found! WandB will request your username in the interactive mode.") wandb.init(project=project, entity=entity) @@ -48,7 +48,7 @@ class WandbSummaryWriter(SummaryWriter): wandb.log({"log_dir": run_name}) - # Video logging. + # Video logging bookkeeper self.saved_video_files = {} def store_config(self, env_cfg, runner_cfg, alg_cfg, policy_cfg):