Add description

This commit is contained in:
Farbod Farshidian 2024-02-27 13:34:57 -05:00
parent 64c2d15b41
commit 49e0a5b9bc
1 changed files with 2 additions and 2 deletions

View File

@ -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):