From 29a1b26461c1f82eac781265b0d5b2053f7f33df Mon Sep 17 00:00:00 2001 From: Helena Graf Date: Fri, 10 Nov 2023 13:33:58 +0100 Subject: [PATCH 1/2] Ignore running BOHB runs instead of assigning non-existent `RUNNING` status --- deepcave/runs/converters/bohb.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deepcave/runs/converters/bohb.py b/deepcave/runs/converters/bohb.py index 9bf9a05d..e8fdc105 100644 --- a/deepcave/runs/converters/bohb.py +++ b/deepcave/runs/converters/bohb.py @@ -49,7 +49,6 @@ def from_path(cls, path): first_starttime = None for bohb_run in bohb.get_all_runs(): - times = bohb_run.time_stamps starttime = times["started"] endtime = times["finished"] @@ -77,7 +76,7 @@ def from_path(cls, path): if "SUCCESS" in status or "TERMINATED" in status or "COMPLETED" in status: status = Status.SUCCESS elif "RUNNING" in status or "QUEUED" in status or "REVIEW" in status: - status = Status.RUNNING + continue else: status = Status.CRASHED From 73e477a60468efc6e859ffe637e234d2d8568aca Mon Sep 17 00:00:00 2001 From: Helena Graf Date: Fri, 10 Nov 2023 16:44:44 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e0bf902..143cc91b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 1.1.4 + +## Bug-Fixes +- Don't convert BOHB runs with status 'running' (consistent with SMAC). + # Version 1.1.3 ## Bug-Fixes