Skip to content

Commit

Permalink
Fix delta perf check (#1804)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgmpablo157321 authored Jul 25, 2024
1 parent 3fb6c3e commit 379ee53
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 @@ -2612,7 +2612,7 @@ def check_compliance_acc_dir(test_dir, model, config):
is_valid = False
break
else:
required_delta_perc = config.get_delta_perc(model, acc_types)
required_delta_perc = config.get_delta_perc(model, acc_type[0])
delta_perc = abs(1 - acc_baseline[acc_type] / acc_compliance[acc_type]) * 100
if delta_perc <= required_delta_perc:
is_valid = True
Expand Down

0 comments on commit 379ee53

Please sign in to comment.