From 96c53ad06f0c3386f325b8ac07f176dc1c8ccf0a Mon Sep 17 00:00:00 2001 From: Cadene Date: Thu, 22 Feb 2024 12:15:14 +0000 Subject: [PATCH] remove comments --- lerobot/common/logger.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lerobot/common/logger.py b/lerobot/common/logger.py index 60ec57086..1fd88714a 100644 --- a/lerobot/common/logger.py +++ b/lerobot/common/logger.py @@ -146,7 +146,6 @@ class Logger(object): print(colored("Logs will be saved locally.", "yellow", attrs=["bold"])) self._wandb = None else: - # try: os.environ["WANDB_SILENT"] = "true" import wandb @@ -168,15 +167,6 @@ class Logger(object): ) print(colored("Logs will be synced with wandb.", "blue", attrs=["bold"])) self._wandb = wandb - # except: - # print( - # colored( - # "Warning: failed to init wandb. Make sure `wandb_entity` is set to your username in `config.yaml`. Logs will be saved locally.", - # "yellow", - # attrs=["bold"], - # ) - # ) - # self._wandb = None self._video = ( VideoRecorder(self._log_dir, self._wandb) if self._wandb and cfg.save_video