Update dump info in common

This commit is contained in:
MaggotHATE 2024-10-08 21:15:37 +05:00 committed by GitHub
parent c19fb26042
commit 6feb6b399c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2088,9 +2088,9 @@ void yaml_dump_non_result_info(FILE * stream, const gpt_params & params, const l
fprintf(stream, "top_k: %d # default: 40\n", sparams.top_k);
fprintf(stream, "top_p: %f # default: 0.95\n", sparams.top_p);
fprintf(stream, "min_p: %f # default: 0.0\n", sparams.min_p);
fprintf(stream, "xtc_p: %f # default: 0.0\n", sparams.xtc_p);
fprintf(stream, "xtc_t: %f # default: 0.0\n", sparams.xtc_t);
fprintf(stream, "xtc_t_max: %f # default: 0.0\n", sparams.xtc_t_max);
fprintf(stream, "xtc_p: %f # default: 0.5\n", sparams.xtc_p);
fprintf(stream, "xtc_t: %f # default: 0.1\n", sparams.xtc_t);
fprintf(stream, "xtc_t_max: %f # default: 1.0\n", sparams.xtc_t_max);
fprintf(stream, "typ_p: %f # default: 1.0\n", sparams.typ_p);
fprintf(stream, "verbose_prompt: %s # default: false\n", params.verbose_prompt ? "true" : "false");
fprintf(stream, "display_prompt: %s # default: true\n", params.display_prompt ? "true" : "false");