From 56728633ab898107e7605dfc076b728b9f1add95 Mon Sep 17 00:00:00 2001 From: Ayush Chaurasia Date: Mon, 25 Oct 2021 15:36:12 +0530 Subject: [PATCH] W&B: Media panel fix (#5317) --- utils/loggers/wandb/wandb_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/loggers/wandb/wandb_utils.py b/utils/loggers/wandb/wandb_utils.py index a4940afd2308..7fb76b05e987 100644 --- a/utils/loggers/wandb/wandb_utils.py +++ b/utils/loggers/wandb/wandb_utils.py @@ -486,7 +486,7 @@ def end_epoch(self, best_result=False): if self.wandb_run: with all_logging_disabled(): if self.bbox_media_panel_images: - self.log_dict["Bounding Box Debugger/Images"] = self.bbox_media_panel_images + self.log_dict["BoundingBoxDebugger"] = self.bbox_media_panel_images wandb.log(self.log_dict) self.log_dict = {} self.bbox_media_panel_images = []