Skip to content

Commit

Permalink
Fix run_evaluation argument
Browse files Browse the repository at this point in the history
  • Loading branch information
pgmpablo157321 committed Dec 4, 2024
1 parent 7ccc9ab commit d354002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion language/llama3-405b/evaluate-accuracy.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def main():

preds, targets = postprocess_text(preds_decoded_text, target_required)

result = run_evaluation(preds, targets, metrics)
result = run_evaluation(preds, targets, metrics_required)
result = dict(result)
prediction_lens = [len(pred) for pred in preds]
gen_num = len(preds)
Expand Down

0 comments on commit d354002

Please sign in to comment.