Skip to content

Commit

Permalink
Don't check min_query_count with equal issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pgmpablo157321 committed Jul 25, 2024
1 parent 379ee53 commit bf04e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/submission/submission_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit bf04e7d

Please sign in to comment.