From 1a8e5c1c0b85f1dd69224e049379512bce756ac7 Mon Sep 17 00:00:00 2001 From: Remi Cadene Date: Wed, 29 May 2024 11:09:44 +0000 Subject: [PATCH] remove warning for ignored logged types (WIP) --- lerobot/common/logger.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lerobot/common/logger.py b/lerobot/common/logger.py index 109f6951..80832740 100644 --- a/lerobot/common/logger.py +++ b/lerobot/common/logger.py @@ -131,9 +131,6 @@ class Logger: if self._wandb is not None: for k, v in d.items(): if not isinstance(v, (int, float, str)): - logging.warning( - f'WandB logging of key "{k}" was ignored as its type is not handled by this wrapper.' - ) continue self._wandb.log({f"{mode}/{k}": v}, step=step)