Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
wgzintel committed May 23, 2024
1 parent 501e6a8 commit f6aac7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llm_bench/python/utils/output_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def output_avg_min_median(iter_data_list):
values = []
for prompt in same_prompt_datas:
if prompt[key] != '':
values.append(prompt[key])
values.append(prompt[key])
if len(values) > 0:
result[prompt_idx][0][key] = np.mean(values)
result[prompt_idx][1][key] = np.min(values)
Expand Down

0 comments on commit f6aac7d

Please sign in to comment.