[Chore] Save more digits in HuSimpleQASummarizer

This commit is contained in:
Hoter Young 2025-02-15 14:41:41 +08:00
parent b3b5bacc4f
commit 5ecb56a848

View File

@ -50,7 +50,7 @@ def get_capability_results(
for judge in ['correct', 'incorrect', 'not_attempted']:
count = c[judge]
col_name.append(dim + ' ' + judge)
column.append(round(count / dim_count, 2))
column.append(round(count / dim_count, 4))
col_name.append(dim + ' count')
column.append(dim_count)