From e70a1a85e8cc8e7c9d648795aec0e24cbc43f8ba Mon Sep 17 00:00:00 2001 From: Philipp Emanuel Weidmann Date: Sat, 14 Feb 2026 10:02:17 +0530 Subject: [PATCH] fix: don't load checkpoint when evaluating a second model Fixes #144 --- src/heretic/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heretic/main.py b/src/heretic/main.py index d626e6c..d33188f 100644 --- a/src/heretic/main.py +++ b/src/heretic/main.py @@ -240,7 +240,7 @@ def run(): except IndexError: existing_study = None - if existing_study is not None: + if existing_study is not None and settings.evaluate_model is None: choices = [] if existing_study.user_attrs["finished"]: