Skip to content

Commit f49a535

Browse files
authored
common : fix flag --logits-all to --all-logits (#5805)
1 parent 3ab8b3a commit f49a535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) {
10151015
printf(" --ignore-eos ignore end of stream token and continue generating (implies --logit-bias 2-inf)\n");
10161016
printf(" --no-penalize-nl do not penalize newline token\n");
10171017
printf(" --temp N temperature (default: %.1f)\n", (double)sparams.temp);
1018-
printf(" --logits-all return logits for all tokens in the batch (default: disabled)\n");
1018+
printf(" --all-logits return logits for all tokens in the batch (default: disabled)\n");
10191019
printf(" --hellaswag compute HellaSwag score over random tasks from datafile supplied with -f\n");
10201020
printf(" --hellaswag-tasks N number of tasks to use when computing the HellaSwag score (default: %zu)\n", params.hellaswag_tasks);
10211021
printf(" --winogrande compute Winogrande score over random tasks from datafile supplied with -f\n");

0 commit comments

Comments
 (0)