From 4020c8cd42f178362a4829c6ad0072fa80978609 Mon Sep 17 00:00:00 2001 From: tonyd Date: Mon, 5 Sep 2022 23:58:41 -0700 Subject: [PATCH] #757: fix overwrite of existing output models on pipeline task with monitor_models (#758) --- clearml/automation/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml/automation/controller.py b/clearml/automation/controller.py index 949ec0ed..abfe50dd 100644 --- a/clearml/automation/controller.py +++ b/clearml/automation/controller.py @@ -2218,7 +2218,7 @@ class PipelineController(object): if target_models: self._task.reload() models = self._task.data.models - keys = [a.name for a in models.output] + keys = [a.name for a in target_models] models.output = [a for a in models.output or [] if a.name not in keys] + target_models # noinspection PyProtectedMember self._task._edit(models=models)