From bf04e7d2df4df6e6e44230eace5fd25844158ec7 Mon Sep 17 00:00:00 2001 From: Pablo Gonzalez Date: Thu, 25 Jul 2024 15:33:54 -0500 Subject: [PATCH] Don't check min_query_count with equal issue --- tools/submission/submission_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/submission/submission_checker.py b/tools/submission/submission_checker.py index bea5640239..64e7d2b60e 100755 --- a/tools/submission/submission_checker.py +++ b/tools/submission/submission_checker.py @@ -1226,7 +1226,7 @@ def check_performance_dir( # Check if this run uses early stopping. If it does, get the # min_queries from the detail log, otherwise get this value # from the config - if not uses_early_stopping: + if not (uses_early_stopping or equal_issue_used_check): required_min_query_count = config.get_min_query_count(model, scenario) if required_min_query_count and min_query_count < required_min_query_count: log.error(